Storing first 200 points from 400 points

조회 수: 2 (최근 30일)
Hussam Ibrahim
Hussam Ibrahim 2017년 11월 13일
편집: James Tursa 2017년 11월 14일
Hello,
I have a 700000x1 double array where I want to store the first 200 points from every 400 points into a new array. How can I do it?
e.g. Store 1 to 200 from 1 to 400 Store 401 to 600 from 401 to 800 Store 801 to 1000 from 801 to 1200 and so on

채택된 답변

James Tursa
James Tursa 2017년 11월 14일
편집: James Tursa 2017년 11월 14일
X = your vector
temp = reshape(X,400,[]); % Get groups of 400 in columns
result = reshape(temp(1:200,:),1,[]); % Pick off the first 200 rows and reshape

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by