필터 지우기
필터 지우기

fill value that has different size of array

조회 수: 3 (최근 30일)
상훈 송
상훈 송 2022년 9월 12일
댓글: 상훈 송 2022년 9월 13일
Hi
I'm using matlab function emd for decomposing signals. I have a 10 different sets of signals however, for example, one signal from 10 is decomposed into 8 imf and 1 residual and another one signal is decomposed into 9 imf and 1 residual. I would like to fill the array with NaN value that has smaller number of decomposed imf compared to the longest one using for loop..
1_imfs = {10001x8} 2_imfs = {10001x9} ....
1_residual = {10001x1} 2_residual = {10001x1} .....
Here is the code that i've tried..
for i = 1:10
input_imfs = NaN(10,10001,10);
input_res = NaN(10,10001);
[input_imfs(i,:,:),input_res(i,:)] = emd(Data_input_acc(i,:));
end

채택된 답변

Jeffrey Clark
Jeffrey Clark 2022년 9월 13일
@상훈 송, trying to save results directly into part of an array will not work unless you know exactly what the size of the return will be so that you can replace the ':'s in the left side of the assignment. But this will work (note that the input_varables must be defined before the loop):
input_imfs = NaN(10,10001,10);
input_res = NaN(10,10001);
for i = 1:10
[imfs,res] = emd(Data_input_acc(i,:));
input_imfs(i,1:size(imfs,1),1:size(imfs,2)) = imfs;
input_res(i,1:length(res)) = res;
end
  댓글 수: 1
상훈 송
상훈 송 2022년 9월 13일
Thank you so much... It worked perfectly well!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Discrete Multiresolution Analysis에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by