How to remove multiple elements in a row matrix
4 ビュー (過去 30 日間)
古いコメントを表示
I have a 40000x1 matrix and just want to remove elements 1 to 2834. How do I do this?
0 件のコメント
回答 (1 件)
Alex Mcaulley
2020 年 2 月 20 日
編集済み: Alex Mcaulley
2020 年 2 月 20 日
This is a very basic problem. I recommend you to do the Matlab tutorial
Being A your array:
A = A(2835:end);
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!