HOW TO PLOT SINGLE GRAPH OF TWO EQUATION WHICH IS CONDITIONALLY SATISFIED
1 view (last 30 days)
Show older comments
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)
0 Comments
Answers (2)
Damien
on 4 Oct 2016
Hello,
Just define a variable which contains your result
if Vds<Vgs-Vt
Result=Id;
else
Result=Id1;
end
plot(Vds,Result)
0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!