Sketch the graph using matlab
显示 更早的评论
Using Matlab to sketch the graph of y= (x^3-1)/(√x - 3).
回答(1 个)
Star Strider
2023-4-17
0 个投票
Use element-wise operations to calculate ‘y’:
y = (x.^3-1)./(sqrt(x) - 3)
.
类别
在 帮助中心 和 File Exchange 中查找有关 Graph and Network Algorithms 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!