How can we plot a function with domain involving infinity

5 次查看(过去 30 天)
How can we plot a function with the domain involving infinity? Suppose I want to plot the following function:
f(y)=(2*pi*y)^(-1/2)*exp(-y/2); y>0
How can I do this in MATLAB?
Thanks

采纳的回答

Andrew Newell
Andrew Newell 2017-4-19
Of course, you can't plot the whole thing, but you can plot enough so that it's obvious where the curve is going. One approach is to let MATLAB choose the domain for you:
f = @(y) (2*pi*y).^(-1/2).*exp(-y/2);
ezplot(f)

更多回答(1 个)

Jayesh Shimpi
Jayesh Shimpi 2019-10-5
Infinity symbol used in Matlab for limit to plot the graph

类别

Help CenterFile Exchange 中查找有关 Annotations 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by