matlab读取excel某列数值后,取得最大值和该值的行号,如何读取该数值上下各10个数值。
3 ビュー (過去 30 日間)
古いコメントを表示
採用された回答
ymyveny
2023 年 5 月 25 日
示例:
I = rand(100,1);
[Imax,Iind] = max(I);
Temp = I(Iind-10:Iind+20,1);
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Data Import from MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!