Filter löschen
Filter löschen

I am very new to Matlab and was wondering how to graph the function y= (x-1)/(x+1)

10 Ansichten (letzte 30 Tage)
I have written the code: x= -5:5; y= (x - 1)/(x + 1); plot(x,y)
It does not come up with any errors but when I select Run my graph does not show

Akzeptierte Antwort

MSP
MSP am 30 Jul. 2017
Just include a . before division
x= -5:5
y= (x - 1)./(x + 1)
plot(x,y)

Weitere Antworten (0)

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by