[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Octave-bug-tracker] [bug #45118] isequal doesn't call overloaded isequa
From: |
Julien Bect |
Subject: |
[Octave-bug-tracker] [bug #45118] isequal doesn't call overloaded isequal on struct fields |
Date: |
Mon, 16 May 2016 08:41:32 +0000 (UTC) |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Firefox/45.0 |
Follow-up Comment #7, bug #45118 (project octave):
The problem is solved in Octave 4.0.2:
>> pkg install -forge stk
>> pkg load stk
>> x = stk_dataframe (rand (3, 2), {'A' 'B'})
x = <3x2 stk_dataframe array>
: A B
* : 0.143348 0.299240
* : 0.407387 0.134785
* : 0.176241 0.122200
>> isequal (x, x)
ans = 1
>> xx.a = x;
>> isequal (xx, xx)
ans = 1
This bug report can be closed.
_______________________________________________________
Reply to this item at:
<http://savannah.gnu.org/bugs/?45118>
_______________________________________________
Message posté via/par Savannah
http://savannah.gnu.org/
- [Octave-bug-tracker] [bug #45118] isequal doesn't call overloaded isequal on struct fields,
Julien Bect <=