What steps will reproduce the problem?
1. Create a file called testfunc.m
2. Paste the following code into the file:
function t=testfunc()
t=[0;0];
for m=[1 2 3;4 5 6]
t=t+m;
end
3. Navigate in addi to the directory where testfunc.m is located
4. Call testfunc()
What is the expected output? What do you see instead?
Expected Output:
ans =
6
15
What do you see instead?
ans =
21
21
What version of the product are you using? On what operating system?
Addi 1.84
Android OS, v2.3 (Gingerbread)
Please provide any additional information below.
Both Octave and Matlab consider a column of a given matrix m in each iteration
of a for-loop for n=m ... end. But addi starts an iteration for each entry of
matrix m in a given for-loop for n=m ... end.
Original issue reported on code.google.com by TristanB...@gmail.com on 14 Nov 2011 at 10:57
Original issue reported on code.google.com by
TristanB...@gmail.com
on 14 Nov 2011 at 10:57