How do I print a formatted matrix without using a loop?

조회 수: 45 (최근 30일)
Kevin
Kevin 2013년 10월 5일
편집: Cedric 2013년 10월 5일
I am writing a matrix equation to a txt file using fprintf. I'm using %f to specify the vairable type. When it prints, however, it prints the elements in a list vertically going down the page. I would like to display the matrix (which is a 6x6) so that it maintains the row/column structure. Is there a way to do this simply? Preferably without a loop? Thank you for the help.

답변 (2개)

cr
cr 2013년 10월 5일
편집: cr 2013년 10월 5일
Why not
disp(m).
%f will sequentially output all nos of the matrix. If you are using textile output, just use
dlmwrite('filename.txt',m,' ')
for space delimited text file.
Cheers.

Cedric
Cedric 2013년 10월 5일
편집: Cedric 2013년 10월 5일
fprintf( fid, '%f %f %f %f %f %f\n', m.' ) ;
where fig is the file identifier returned by FOPEN (or 1 if you want to test on stdout/screen). What you didn't understand is that FPRINTF reads arrays linearly (column first) and repeats the formatSpec as many times as required for outputting all elements of the array.
In this solution, we pass the transpose of m to FPRINTF so column-first becomes row-first, and we put six %f in the formatSpec before the \n which repeats the row output (6 elements and a line return).

카테고리

Help CenterFile Exchange에서 Environment and Settings에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by