Hi I have a displayed matrix like this :
(1,1) 0.00075602592
(3,1) 0.00013085064
(4,1) -8.00127432e-07
(2,2) 1.25066072448e-08
(3,2) 8.00127432e-07
(4,2) -4.6899777168e-09
(1,3) 0.00013085064
(2,3) 8.00127432e-07
(3,3) 0.00037801296
(4,3) -1.354061808e-06
(1,4) -8.00127432e-07
(2,4) -4.6899777168e-09
(3,4) -1.354061808e-06
(4,4) 6.2533036224e-09
But, i want that is displayed in the classic form of a matrix.
How can i do it ?

답변 (1개)

Adam
Adam 2016년 9월 6일

2 개 추천

I assume you have a sparse matrix so:
full( myMatrix );
should convert it to a normal matrix.

댓글 수: 3

No, it doesn't return it to a normal matrix.
Use
myMatrix = full(myMatrix);
Thanks

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Time Series Objects에 대해 자세히 알아보기

태그

질문:

2016년 9월 6일

댓글:

2016년 9월 6일

Community Treasure Hunt

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

Start Hunting!

Translated by