How to find the power of a matrix?

조회 수: 1 (최근 30일)
Sameema Tariq
Sameema Tariq 2020년 8월 8일
편집: Sameema Tariq 2020년 8월 8일
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