You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Parsing following code with mconvert:
x = cell(1,1);
x{1} = 0;
gives following error:
File "/usr/local/lib/python2.7/dist-packages/matlab2cpp/tree/variables.py", line 109, in assign
cur = self.iterate_cell(node, k)
AttributeError: 'Builder' object has no attribute 'iterate_cell'
There is an error due to code trying to call non-existent function iterate_cell, in Builder object, which is an object of class Builder (/tree/builder.py)
The text was updated successfully, but these errors were encountered:
Parsing following code with mconvert:
x = cell(1,1);
x{1} = 0;
gives following error:
File "/usr/local/lib/python2.7/dist-packages/matlab2cpp/tree/variables.py", line 109, in assign
cur = self.iterate_cell(node, k)
AttributeError: 'Builder' object has no attribute 'iterate_cell'
There is an error due to code trying to call non-existent function iterate_cell, in Builder object, which is an object of class Builder (/tree/builder.py)
The text was updated successfully, but these errors were encountered: