
square root on an interval
2 visualizaciones (últimos 30 días)
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?
0 comentarios
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
Ver también
Categorías
Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!