Convert values in text file into matrix
3 ビュー (過去 30 日間)
古いコメントを表示
How to convert values in a text file to 80*64 matrix? Text file is attched.
0 件のコメント
採用された回答
Voss
2022 年 3 月 18 日
This file contains 5120 numbers on a single line, so the matrix is of size 1-by-5120:
A = readmatrix('textT.txt','Delimiter',' ')
2 件のコメント
Voss
2022 年 3 月 18 日
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
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Characters and Strings についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!