Using fprintf to save a matrix changes the order of my matrix

10 vues (au cours des 30 derniers jours)
Bruno Carvalho
Bruno Carvalho le 7 Juin 2021
Commenté : Bruno Carvalho le 7 Juin 2021
I dont understand why, when i use the fprintf function my matrix changes from the orange example to the blue one, can someone please help?

Réponses (2)

Julius Muschaweck
Julius Muschaweck le 7 Juin 2021
Your matrix does not change. You are outputting the values in your matrix, six numbers per line, as it is stored internally. And in Matlab, storage is "column major". Try your code in line 17, replacing teste with its transpose, teste' and you will get the desired output.
  1 commentaire
Bruno Carvalho
Bruno Carvalho le 7 Juin 2021
Yes, it worked. Now i understand, thank you very much.

Connectez-vous pour commenter.


James Tursa
James Tursa le 7 Juin 2021
Modifié(e) : James Tursa le 7 Juin 2021
MATLAB stores 2D matrices in column order. That is, the numbers in your matrix are stored in memory in this order:
0, 1, 2, 3, 2.0151e9, ... etc.
So when you print the matrix out, it simply prints out the numbers as they are stored in memory. If you want it to print like it displays on the screen in MATLAB, print out the transpose. E.g.,
fprintf( whatever , teste.');

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by