Sketch the graph using matlab

4 views (last 30 days)
Tai Hieu
Tai Hieu on 17 Apr 2023
Answered: Star Strider on 17 Apr 2023
Using Matlab to sketch the graph of y= (x^3-1)/(√x - 3).
  1 Comment
Tai Hieu
Tai Hieu on 17 Apr 2023
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🥰

Sign in to comment.

Answers (1)

Star Strider
Star Strider on 17 Apr 2023
Use the linspace function to create the ‘x’ vector.
Use element-wise operations to calculate ‘y’:
y = (x.^3-1)./(sqrt(x) - 3)
See Array vs. Matrix Operations for details.
Use the plot function for that part.
.

Categories

Find more on Graph and Network Algorithms in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!