How to get z for different x
Mostra commenti meno recenti
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 Commenti
Thomas
il 18 Dic 2012
what error are you getting? what answer do you expect?
Risposta accettata
Più risposte (2)
Thomas
il 18 Dic 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
Daniel Shub
il 18 Dic 2012
0 voti
Presumably you want to use ./ instead of /, just like you are using .* instead of *
Categorie
Scopri di più su Linear Algebra in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!