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