sort data
이전 댓글 표시
i have an array of data with size of (1,361). I need to select and store all the data from (1,121) to (1,241) into anther array. How can i do this?
채택된 답변
추가 답변 (1개)
the cyclist
2012년 3월 18일
% Input
A = rand(1,361);
% Select and store
B = A(121:241);
카테고리
도움말 센터 및 File Exchange에서 Shifting and Sorting Matrices에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!