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