How to make dynamic variable names (A1, A2, A3, ..., ) with "for" loop?

53 ビュー (過去 30 日間)
abdelkrim bensmaine
abdelkrim bensmaine 2021 年 12 月 15 日
コメント済み: abdelkrim bensmaine 2021 年 12 月 15 日
Hello community,
my knowledge of Matlab is limited, I admit it. So, I am sorry if I am going to make mistakes.
I have to create a series of variable using a "for" loop to associat it with a TF in order to draw Bode diagram for each delay,I tried this but it didn't work:
num = [1];
dem = [1 1 0 0];
T=[0.1,0.5,2,3,4,20];%% delay
% ind='A,B,C,D,E,F';
% index=strsplit(ind,',') I tried to make a variable with index(j) but
% it didn't work for me
for i=1:length(T)
for j=1:length(T)
eval(['A' num2str(j) ])=tf(num ,dem,'Inputdelay',T(i));
for plotId = 1 : 6
subplot(3,2,plotId), bode(A(j))
grid on;
title(['delay=',num2str(T(plotId))])
end
end
end

採用された回答

Rik
Rik 2021 年 12 月 15 日
Don't use numbered variables. Use cell arrays instead. I also changed your loops to use n instead of i and j (as they can be cofused for sqrt(-1)) and replace length with numel, as that is probably what you meant.
Since your three loops seemed to do the same thing, I merged them.
num = [1];
dem = [1 1 0 0];
T=[0.1,0.5,2,3,4,20];%% delay
% ind='A,B,C,D,E,F';
% index=strsplit(ind,',') I tried to make a variable with index(j) but
% it didn't work for me
for n=1:numel(T)
A{n}=tf(num ,dem,'Inputdelay',T(n));
subplot(3,2,n), bode(A{n})
grid on;
title(sprintf('delay=%.1f',T(n)))
end
  1 件のコメント
abdelkrim bensmaine
abdelkrim bensmaine 2021 年 12 月 15 日
thank you a lot sir , I realy appreciate it

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by