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

26 views (last 30 days)
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.

Answers (2)

cr
cr on 5 Oct 2013
Edited: cr on 5 Oct 2013
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 on 5 Oct 2013
Edited: Cedric on 5 Oct 2013
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).

Categories

Find more on Environment and Settings in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!