How to remove multiple elements in a row matrix
이전 댓글 표시
I have a 40000x1 matrix and just want to remove elements 1 to 2834. How do I do this?
답변 (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);
카테고리
도움말 센터 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!