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 件)
Ameer Hamza
2020 年 11 月 8 日
One way is to use fplot()
f = @(x) sqrt(x)
fplot(f, [0 2])

4 件のコメント
Jens Petit-jean
2020 年 11 月 8 日
Ameer Hamza
2020 年 11 月 8 日
This creates a function handle. Read about function handle here: https://www.mathworks.com/help/matlab/function-handles.html
Jens Petit-jean
2020 年 11 月 8 日
Ameer Hamza
2020 年 11 月 8 日
I am glad to be of help!!!
カテゴリ
ヘルプ センター および File Exchange で 2-D and 3-D Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!