square root on an interval

how to make a figure of the square root on the interval [0,2]. The figure should be smooth, not angular?

回答(1 个)

One way is to use fplot()
f = @(x) sqrt(x)
fplot(f, [0 2])

4 个评论

thanks, but why do you use the @ in front of (x)?
This creates a function handle. Read about function handle here: https://www.mathworks.com/help/matlab/function-handles.html
okay thank you very much!
I am glad to be of help!!!

请先登录,再进行评论。

类别

帮助中心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!

Translated by