how to give title of the legends?

12 ビュー (過去 30 日間)
Muhammad
Muhammad 2021 年 10 月 2 日
コメント済み: the cyclist 2021 年 10 月 3 日
i have the folowing code that generate step responce of every transfer function in plot i want to give the name of each legend ho i can do
clc
clear all
%muhammad sulaman
%19-ee-65
s=tf('s')
wn=0.7;
k=1;
% z=input('enter the value of zeta::');
z=[0 0.1 0.2 0.5 0.7 0.8 0.9 1]
for ii=1:1:8
l=z(ii)
t=linspace(1 ,100,1)
num=k*(wn^2)
den= s^2+2*l*wn*s+wn^2
sys(ii)=num/den
end
stepplot(sys(1),sys(2),sys(3),sys(4),sys(5),sys(6),sys(7),sys(8),t)
  2 件のコメント
Muhammad
Muhammad 2021 年 10 月 2 日
clc
clear all
%muhammad sulaman
clc
clear all
%muhammad sulaman
%19-ee-65
s=tf('s')
wn=0.7;
k=1;
% z=input('enter the value of zeta::');
z=[0 0.1 0.2 0.5 0.7 0.8 0.9 1]
for ii=1:1:8
l=z(ii)
t=linspace(1 ,100,1)
num=k*(wn^2)
den= s^2+2*l*wn*s+wn^2
sys(ii)=num/den
end
stepplot(sys(1),sys(2),sys(3),sys(4),sys(5),sys(6),sys(7),sys(8),t)
legend(sys(1),sys(2),sys(3),sys(4),sys(5),sys(6),sys(7),sys(8),'zeta 0','zeta 00.1','zeta 0.2','zeta 0.5','zeta 0.7''zeta 0.8''zeta 0.9','zeta 1')
its giving the error
Error using legend>process_inputs (line 582)
Invalid argument. Type 'help legend' for more
information.
Error in legend>make_legend (line 340)
[autoupdate,orient,location,position,children,listen,strings,propargs]
= process_inputs(ha,argin); %#ok
Error in legend (line 294)
make_legend(ha,args(arg:end),version);
Error in lab2taskno1 (line 19)
legend(sys(1),sys(2),sys(3),sys(4),sys(5),sys(6),sys(7),sys(8),'show')
>>
the cyclist
the cyclist 2021 年 10 月 3 日
clc
clear all
%muhammad sulaman
clc
clear all
%muhammad sulaman
%19-ee-65
s=tf('s');
wn=0.7;
k=1;
% z=input('enter the value of zeta::');
z=[0 0.1 0.2 0.5 0.7 0.8 0.9 1];
for ii=1:1:8
l=z(ii);
t=linspace(1 ,100,1);
num=k*(wn^2);
den= s^2+2*l*wn*s+wn^2;
sys(ii)=num/den;
end
stepplot(sys(1),sys(2),sys(3),sys(4),sys(5),sys(6),sys(7),sys(8),t)
legend({'zeta 0','zeta 00.1','zeta 0.2','zeta 0.5','zeta 0.7','zeta 0.8','zeta 0.9','zeta 1'})

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

採用された回答

the cyclist
the cyclist 2021 年 10 月 2 日
You can use the legend function.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLegend についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by