Why isn't the plot showing up? (new on programing)

1 Ansicht (letzte 30 Tage)
simon ericsson
simon ericsson am 17 Okt. 2021
Kommentiert: simon ericsson am 17 Okt. 2021
x = linspace(-10,10,100);
y = @(x) (x.^2 + x.^2 + 3.*x)/(x.^2 + 4.*x + 5);
plot(x,y(x),'r','LineWidth',2)

Akzeptierte Antwort

KSSV
KSSV am 17 Okt. 2021
x = linspace(-10,10,100);
y = @(x) (x.^2 + x.^2 + 3.*x)./(x.^2 + 4.*x + 5); % element by elememnt division
plot(x,y(x),'r','LineWidth',2)

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