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