RosettaCodeData/Task/Matrix-exponentiation-operator/Octave/matrix-exponentiation-operator.octave
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

6 lines
45 B
Text

M = [ 3, 2; 2, 1 ];
M^0
M^1
M^2
M^(-1)
M^0.5