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!