Importing data from txt file
2 ビュー (過去 30 日間)
古いコメントを表示
Hello I have a text file: attached
I would like to take the numerical values of the first and second column and put them in matrices T and A respectively.
0 件のコメント
回答 (1 件)
Image Analyst
2014 年 6 月 6 日
t = readtable('chichi_triplos_katagrafh.txt');
or use dlmread();
2 件のコメント
Image Analyst
2014 年 6 月 6 日
readtable is only there after R2013b. Try importdata
M = importdata(filename, '\t', 1)
参考
カテゴリ
Help Center および File Exchange で Spreadsheets についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!