How to convert 10x10 matrix to X, Y, Z txt file
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
This 10x10 matrix is an array of several Z values (i.e. element 1x1 is z=5, element 3x6 is z=2, etc.). How can I output this matrix data to a text file that reads:
- 1 1 5
- 1 2 3
- 1 3 11
- ...
- 10 9 6
- 10 10 3
I am relatively new to MATLAB, so please excuse the naivety of this question.
Many thanks.
3 Commenti
Risposte (1)
Azzi Abdelmalek
il 27 Gen 2014
Modificato: Azzi Abdelmalek
il 27 Gen 2014
If A is your matrix
A=[1 1 1; 1 2 2; 1 3 3; 1 4 4; 1 5 5; 2 1 1; 2 2 2; 2 3 3;5 5 5]
dlmwrite('file_name.txt',A,'delimiter','\t')
%or
A=[1 1 1; 1 2 2; 1 3 3; 1 4 4; 1 5 5; 2 1 1; 2 2 2; 2 3 3;5 5 5]
dlmwrite('file_name.txt',A,'delimiter','\t','newline','pc')
0 Commenti
Vedere anche
Categorie
Scopri di più su Environment and Settings in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!