Re: [Scilab-users] How to assign column data to mlist?

2015-07-14 Thread jrafaelbguerra
Hi Samuel, Thanks for shedding light about these less well documented yet advanced features of the Scilab language. Best regards Rafael Sent by Outlook for Android From: Samuel Gougeon Sent: Tuesday 14 July 13:22 Subject: Re: [Scilab-users] How to assign column data to mlist? To: Int

Re: [Scilab-users] How to assign column data to mlist?

2015-07-14 Thread Samuel Gougeon
Le 13/07/2015 23:53, Rafael Guera a écrit : Not sure of what M(i) should mean in a situation where the matrices have different sizes: The developer is responsible for his/her mlist design: * when initializing or assigning data, their respective sizes may be checked * if data with distinc

Re: [Scilab-users] How to assign column data to mlist?

2015-07-14 Thread Samuel Gougeon
Le 13/07/2015 23:53, Rafael Guera a écrit : Samuel, Thanks for the detailed explanation. Not sure of what M(i) should mean in a situation where the matrices have different sizes: data1=ones(10,4); data2=zeros(5,3); M=mlist(['V','field1','field2']); M.field1=data1; M.field2=data2; or wh