Create a new row in a loop

조회 수: 5 (최근 30일)
Jasper Mark
Jasper Mark 2021년 1월 7일
답변: Jasper Mark 2021년 1월 11일
Please forgive me if this is a basic question. I would like to create a new row as the value for freq increases by one to the struct coherence that is created.
for freq = 10; % Would change to freq=10:50
coherence = {};
for coherence_index = 1:length(three_d_trials)
coherence{coherence_index} = cmc_coherence(three_d_trials{coherence_index}, freq, 1000);
coherence{coherence_index} = squeeze(coherence{coherence_index});
end
end

채택된 답변

dpb
dpb 2021년 1월 7일
f1=10; f2=50;
coherence=cell(numel(f1:f2),numel(three_d_trials));
j=0;
for freq=f1:f2
j=j+1;
for coherence_index = 1:length(three_d_trials)
coherence{j,coherence_index} = squeeze(cmc_coherence(three_d_trials{coherence_index}, freq, 1000));
end
end
What's the squeeze for???

추가 답변 (1개)

Jasper Mark
Jasper Mark 2021년 1월 11일
Thank you so much! The squeeze is to condense the 3-d format of the file into a 2-d array

카테고리

Help CenterFile Exchange에서 Elementary Math에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by