plotting a piecewise function-help
3 ビュー (過去 30 日間)
古いコメントを表示
I want to plot Vl versus vs
function Vl= piecewisefunnn(vs); vs1 = vs>0.6; Vl(vs1)=(vs(vs1)-0.6); vs2 =(vs<0.6 & vs==0.6); Vl(vs2) = 0; vs= -20:20; plot(vs,Vl(vs)) end
thanx for your help
0 件のコメント
回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!