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

44 vues (au cours des 30 derniers jours)
Kevin
Kevin le 5 Oct 2013
Modifié(e) : Cedric le 5 Oct 2013
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.

Réponses (2)

cr
cr le 5 Oct 2013
Modifié(e) : cr le 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 le 5 Oct 2013
Modifié(e) : Cedric le 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).

Catégories

En savoir plus sur Environment and Settings dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by