3 lines
93 B
Mathematica
3 lines
93 B
Mathematica
|
|
function [output] = matrixexponentiation(matrixA, exponent)
|
||
|
|
output = matrixA.^(exponent);
|