필터 지우기
필터 지우기

Extract certain rows from matrix

조회 수: 2 (최근 30일)
Gareth Evans
Gareth Evans 2015년 3월 6일
댓글: Gareth Evans 2015년 3월 6일
Hello,
I have extracted the peak data from a 1x86400 matrix in the workspace (named a) using the following command:
[pks,locs]=findpeaks(a)
This results in 'pks' = 1x14382 and the 'locs' positions for the obtained data (Also sized at 1x14382).
I would like to use the locations (locs) from the above to extract data from another 1x86400 data file (in this case named b).
Whats the best approach to do this?

채택된 답변

Andrew Newell
Andrew Newell 2015년 3월 6일
편집: Andrew Newell 2015년 3월 6일
Assuming you read the other data file into another_matrix, the answer is
extracted_data = another_matrix(loc);
I suggest you read about Matrix indexing in MATLAB.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Time Series Events에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by