Dear All,
How to write sparse matrix as a small matrix in one page, I have 100x100 matrix and need to write the output in one page so i can read the matrix easily.
regards,
Imola

 Akzeptierte Antwort

Walter Roberson
Walter Roberson am 4 Jun. 2015

1 Stimme

disp() the matrix, or find() on the matrix; see http://www.mathworks.com/help/matlab/math/accessing-sparse-matrices.html
or if you are looking for a graphic output, perhaps spy() the matrix.

4 Kommentare

imola
imola am 6 Jun. 2015
Dear Walter,
Thanks for your answer, I will try it and see the result.
Regards, Imola
imola
imola am 6 Jun. 2015
Dear Walter,
i tried both spy() and disp() i didn't get what i want. see the next matrix, suppose A is my output and it is as follow
A=[0 1 0 0;1 0 0 0;1 1 0 0];
I want to have A like this
A=[0100;1000;1100];
so A for 100x100 will be in one page so I can see the whole matrix.
regards, and thanks for your help.
Walter Roberson
Walter Roberson am 6 Jun. 2015
char(A+'0')
imola
imola am 8 Jun. 2015
Dear Walter,
Thanks that's great, many thanks.
regards

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Sparse Matrices finden Sie in Hilfe-Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by