Reaching a specific data in txt file
2 ビュー (過去 30 日間)
古いコメントを表示
Hello,
suppose I have the file bbb.txt:
date intrest profit loss
24/4/2013 5 232 3232
23/4/2013 6 4224 233
>> Data = importdata('bbb.txt');
>> Data
Data =
data: [2x3 double]
textdata: {3x4 cell}
How can I reach a specific data? Suppose I want the first date or the number 5 in the first row. Thank you!
0 件のコメント
採用された回答
Azzi Abdelmalek
2013 年 5 月 15 日
y=Data.data;
y(1,1)
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Dates and Time についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!