How to find the power of a matrix?

1 次查看(过去 30 天)
I have a matrix in this form:
A=1.0e+05 *[-0.0000 -0.0000
1.5856 -0.0000 ];
And I want to write this matrix in this form:
A=[-0.0000 -0.0000
1.5856 -0.0000 ];
Most importantly, matrix is generated randomly. Its power may vary. It may be some other number at every iteration.
So,How can I do this??

回答(1 个)

KSSV
KSSV 2020-8-8
A=A/10^5 ; A = A.^2 ;
  1 个评论
Sameema Tariq
Sameema Tariq 2020-8-8
But issue is this that matrix is generated randomly. Its power may vary. It may be some other number at every iteration.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 MATLAB 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by