Sketch the graph using matlab
Mostrar comentarios más antiguos
Using Matlab to sketch the graph of y= (x^3-1)/(√x - 3).
1 comentario
Tai Hieu
el 17 de Abr. de 2023
Respuestas (1)
Star Strider
el 17 de Abr. de 2023
0 votos
Use element-wise operations to calculate ‘y’:
y = (x.^3-1)./(sqrt(x) - 3)
.
Categorías
Más información sobre Graph and Network Algorithms 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!