필터 지우기
필터 지우기

Check the code mistake?

조회 수: 2 (최근 30일)
Amit
Amit 2014년 11월 21일
댓글: Julia 2014년 11월 21일
i want to find average of arrays named H_1 ,.....H_n. code should be dynamic such that for example n= 82 then program should importdata from H_1 to H_82 and find their average
what is the mistake with this program I am unable to get this.
n=5;
for q=1:n
assignin('base',['T_',num2str(q)],importdata('Tfunct2_',num2str(q),'.mat','TFunct'));
T(1,n)=T_,num2str(q);
end
T_f=mean(T);
  댓글 수: 4
Amit
Amit 2014년 11월 21일
n=5;
for q=1:n
TF=importdata('Tfunct2_',num2str(q),'.mat');% import data to TF
T(1,q)=TF;% load TF in array T
end
T_f=mean(T); %Taking mean of T i.e. all TF from 1 TF1 to TF5
Julia
Julia 2014년 11월 21일
What is the error message?
I do not know much about the functions you use for importing. Perhaps you should build the string before you use the import function.

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

채택된 답변

Julia
Julia 2014년 11월 21일
Hi,
you overwrite T(1,n) in each loop iteration.
You must replace either the 1 or the n with q.
I don't understand what you do with
T_,num2str(q)
Is the comma intended?

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by