We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4625ed8 commit 42b4ec6Copy full SHA for 42b4ec6
tests/parser/input_1.txt
@@ -1,6 +1,6 @@
1
A = zeros(5); # 3x3 matrix filled with zeros
2
-B = ones(7); # 3x3 matrix filled with ones
3
-C = eye(10); # 3x3 diagonal matrix filled with ones
+B = ones(5); # 3x3 matrix filled with ones
+C = eye(5); # 3x3 diagonal matrix filled with ones
4
D = A.+B; # add element-wise
5
E -= A.-B; # substract element-wise
6
F *= A.*B; # multiply element-wise
0 commit comments