I’ve just finished my hand-written solving but i’m not good at matlab so i need you to solve the problem by using matlab. Thank u so much🥰
Sketch the graph using matlab
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Using Matlab to sketch the graph of y= (x^3-1)/(√x - 3).
Respuestas (1)
Star Strider
el 17 de Abr. de 2023
Use element-wise operations to calculate ‘y’:
y = (x.^3-1)./(sqrt(x) - 3)
.
0 comentarios
Ver también
Categorías
Más información sobre Graph and Network Algorithms 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!