Display Complete output in Command Window
Mostrar comentarios más antiguos
How to display complete matrix size of 3200 x 3200 in Matlab 2007 Command Window?
1 comentario
Rik
el 17 de Jun. de 2019
Doesn't disp work? Or fprintf?
Respuestas (3)
Manvi Goel
el 17 de Jun. de 2019
You can display the output of the matrix by using the disp command.
% Let a be the matrix of dim 3200 * 3200
disp(a) % displays the matrix in the command window.
Steven Lord
el 17 de Jun. de 2019
0 votos
You can expand the size of the Command Window scroll buffer but I'm not sure you're going to be able to expand it enough to show the whole matrix.
Are you really planning to read through all 10,240,000 elements of the array? If not, if you tell us how you're planning to use this information we may be able to offer an alternative that doesn't require displaying over ten million numbers in the Command Window.
1 comentario
GAURAV DHADSE
el 17 de Jun. de 2019
pankhuri kasliwal
el 18 de Jun. de 2019
try this
fmt = [repmat('%4d ', 1, size(A,2)-1), '%4d\n'];
fprintf(fmt, A.');
Categorías
Más información sobre Performance and Memory en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!