Sketch the graph using matlab
Show older comments
Using Matlab to sketch the graph of y= (x^3-1)/(√x - 3).
Answers (1)
Star Strider
on 17 Apr 2023
0 votes
Use element-wise operations to calculate ‘y’:
y = (x.^3-1)./(sqrt(x) - 3)
.
Categories
Find more on Graph and Network Algorithms in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!