How to plot this function ?
古いコメントを表示
Hello all, I'm quite new to matlab , so I want to figure out how to plot that heaviside function ?

I want to get that graphic below the function.
回答 (2 件)
Star Strider
2017 年 9 月 23 日
Try this:
epsilon = @(t) 0.5*(t == 0) + 1*(t > 0);
t = linspace(-1, 1);
figure(1)
plot(t, epsilon(t))
axis([-1 1 -0.1 1.1])
Walter Roberson
2017 年 9 月 23 日
fplot(@heaviside)
カテゴリ
ヘルプ センター および File Exchange で Creating, Deleting, and Querying Graphics Objects についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!