채택된 답변

the cyclist
the cyclist 2023년 4월 13일

0 개 추천

It removes the first element of pz:
pz = [2 3 5 7]
pz = 1×4
2 3 5 7
pz = pz(2:end)
pz = 1×3
3 5 7
For a matrix, it will use linear indexing, and the output will be a vector:
pz = magic(3)
pz = 3×3
8 1 6 3 5 7 4 9 2
pz = pz(2:end)
pz = 1×8
3 4 1 5 9 6 7 2

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Matrix Indexing에 대해 자세히 알아보기

태그

질문:

2023년 4월 13일

댓글:

2023년 4월 13일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by