How to get z for different x
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
x = [-2:0.1:2];
z=x.*(1-x).*(2-x).*(4-x)/((6-x)-(1-x).*(x-7));
I am getting error. Please correct my problem.
2 Kommentare
Akzeptierte Antwort
Wayne King
am 18 Dez. 2012
Bearbeitet: Wayne King
am 18 Dez. 2012
x = [-2:0.1:2];
z = x.*(1-x).*(2-x)./((6-x).*(x-7));
You just forgot a ./
Now you should have a vector
x = [-2:0.1:2];
z = x.*(1-x).*(2-x)./((6-x).*(x-7));
plot(x,z)
Weitere Antworten (2)
Thomas
am 18 Dez. 2012
x = [-2:0.1:2];
z=x.*(1-x).*(2-x).*(4-x)./((6-x)-(1-x).*(x-7))
You missed the . before the division to do element by element division
0 Kommentare
Daniel Shub
am 18 Dez. 2012
Presumably you want to use ./ instead of /, just like you are using .* instead of *
0 Kommentare
Siehe auch
Kategorien
Mehr zu Numeric Types 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!