Sketch the graph using matlab

Using Matlab to sketch the graph of y= (x^3-1)/(√x - 3).

1 Kommentar

Tai Hieu
Tai Hieu am 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🥰

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Star Strider
Star Strider am 17 Apr. 2023

0 Stimmen

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.
.

Kategorien

Mehr zu Graph and Network Algorithms finden Sie in Hilfe-Center und File Exchange

Tags

Gefragt:

am 17 Apr. 2023

Beantwortet:

am 17 Apr. 2023

Community Treasure Hunt

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

Start Hunting!

Translated by