square root on an interval
Mostrar comentarios más antiguos
how to make a figure of the square root on the interval [0,2]. The figure should be smooth, not angular?
Respuestas (1)
Ameer Hamza
el 8 de Nov. de 2020
One way is to use fplot()
f = @(x) sqrt(x)
fplot(f, [0 2])

4 comentarios
Jens Petit-jean
el 8 de Nov. de 2020
Ameer Hamza
el 8 de Nov. de 2020
This creates a function handle. Read about function handle here: https://www.mathworks.com/help/matlab/function-handles.html
Jens Petit-jean
el 8 de Nov. de 2020
Ameer Hamza
el 8 de Nov. de 2020
I am glad to be of help!!!
Categorías
Más información sobre 2-D and 3-D Plots en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!