Reading txt files and getting maximum values with characters and numbers
1 回表示 (過去 30 日間)
古いコメントを表示
BENJAMIN BUCHDA
2021 年 2 月 23 日
コメント済み: BENJAMIN BUCHDA
2021 年 2 月 23 日
I am trying to write a function that takes a txt file with names of individuals and their age and income, and with that information find the richest young person and richest old person within the file. I have have approached the problem at difference directions, reading each individual line, making it into a table but I am struggling on even approaching this. Can tips or advice from someone much better at Matlab than me? any help would be appreciated.
2 件のコメント
Walter Roberson
2021 年 2 月 23 日
readtable() should read the data easily, but I don't know what "richest young person" means.
採用された回答
Walter Roberson
2021 年 2 月 23 日
Example:
T = table(randi(4,20,1), randi(99,20,1))
min1 = min(T{:,1});
T(T{:,1}==min1,:)
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Environment and Settings についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!