1
package montimath.vanilla;
2
 
3
script ForLoop3
4
  Q^{3, 3} A = [1, 2, 3; 4, 5, 6; 7, 8, 9];
5
  Q Cmat = 0;
6
  for i = 0:2
7
    for j = 0:2
8
      Cmat += A(i, j);
9
    end;
10
  end;
11
end
1
package montimath.vanilla;
2
 
3
script ForLoop3
4
  
5
  
6
  for 
7
    for 
8
      
9
    end;
10
  end;
11
end