I have a .xls file that I have imported and I am needing to remove the min number from each row. going down by each row.
1 回表示 (過去 30 日間)
古いコメントを表示
grades = xlsread('gradedata.xls');
B = grades.'
B(sub2ind(size(B),1:size(B,2))) = [];
B = reshape(B,[],size(grades,1)).'
This is what I got so far... but the output is not what I am looking for.
0 件のコメント
採用された回答
Walter Roberson
2023 年 3 月 1 日
[~, minidx] = min(B, 1);
Now you want to delete row minidx(1), column 1, row minidx(2), column 2, row minidx(3), column 3, and so on.
4 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Spreadsheets についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!