这个矩阵的n次方用Matlab软件怎么实现矩阵A=0.8000 0.1000 0.20000.0500 0.9000 0.20000.1500 0 0.6000
来源:学生作业帮助网 编辑:六六作业网 时间:2024/11/28 22:02:25
这个矩阵的n次方用Matlab软件怎么实现矩阵A=0.8000 0.1000 0.20000.0500 0.9000 0.20000.1500 0 0.6000
这个矩阵的n次方用Matlab软件怎么实现
矩阵A=0.8000 0.1000 0.2000
0.0500 0.9000 0.2000
0.1500 0 0.6000
这个矩阵的n次方用Matlab软件怎么实现矩阵A=0.8000 0.1000 0.20000.0500 0.9000 0.20000.1500 0 0.6000
^ Matrix power.
Z = X^y is X to the y power if y is a scalar and X is square.If y is an
integer greater than one,the power is computed by repeated
multiplication.For other values of y the calculation
involves eigenvalues and eigenvectors.
Z = x^Y is x to the Y power,if Y is a square matrix and x is a scalar,
computed using eigenvalues and eigenvectors.
Z = X^Y,where both X and Y are matrices,is an error.
C = MPOWER(A,B) is called for the syntax 'A ^ B' when A or B is an
object.