Convert values in text file into matrix
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
How to convert values in a text file to 80*64 matrix? Text file is attched.
0 commentaires
Réponse acceptée
Voss
le 18 Mar 2022
This file contains 5120 numbers on a single line, so the matrix is of size 1-by-5120:
A = readmatrix('textT.txt','Delimiter',' ')
2 commentaires
Voss
le 18 Mar 2022
A = readmatrix('textT.txt','Delimiter',' ')
A = reshape(A,80,64) % numbers in the file go down the first column of A first
or perhaps
A = reshape(A,64,80).' % numbers in the file go across the first row of A first
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Characters and Strings dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!