HOW TO PLOT SINGLE GRAPH OF TWO EQUATION WHICH IS CONDITIONALLY SATISFIED

2 次查看(过去 30 天)
Vds=0:0.00001:.3; Vt=0.4; Vgs=0.6; Mn=398*10^-4; Cox=9.99*10^-10; p=2; k=Mn*Cox*p; Id1=k/2*(Vgs-Vt)^2; Id=k/2*(2*(Vgs-Vt).*Vds-Vds.^2); if Vds<Vgs-Vt Id;
else Id1; end plot(Vds,Id)

回答(2 个)

Damien
Damien 2016-10-4
Hello,
Just define a variable which contains your result
if Vds<Vgs-Vt
Result=Id;
else
Result=Id1;
end
plot(Vds,Result)

VBBV
VBBV 2022-3-13
编辑:VBBV 2022-3-13
clear all;
Vds=0:0.01:.3; Vt=0.4; Vgs=0.6; Mn=398*10^-4; Cox=9.99*10^-10; p=2; k=Mn*Cox*p;
for kk = 1:length(Vds)
if Vds(kk) < (Vgs-Vt)
Idd(kk) =k/2*(2*(Vgs-Vt)*Vds(kk)-Vds(kk)^2);
else
Idd(kk) =k/2*(Vgs-Vt).^2;
end
end
plot(Vds,Idd)

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by