1
package montimath.vanilla;
2
 
3
script MatrixWithMathExpression
4
  Q matB = 5;
5
  Q matC = 3;
6
  Q^{2, 2} A = [1 + 1, 1 * 2; 1 - matC, 1 / matB];
7
  A += A^2;
8
  Q^{3, 2} D = ([1, 2, 3; 4, 5, 6] + [1, 2, 3; 4, 5, 6])';
9
end
1
package montimath.vanilla;
2
 
3
script MatrixWithMathExpression
4
  
5
  
6
  
7
  
8
  
9
end