Hi, I would like to ask if my answer is correct or not, here is the question.
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Erwin Koman
le 27 Juin 2015
Commenté : Erwin Koman
le 27 Juin 2015
Here is my Code
% Graphical method to solve x.^4 + x.^3 - 2*x.^2 +1
x = -5:.1:5;
f = inline('x.^4 + x.^3 - 2*x.^2 +1');
plot(x,f(x))
xlabel('x');ylabel('f(x)')
grid;zoom on
0 commentaires
Réponse acceptée
Salaheddin Hosseinzadeh
le 27 Juin 2015
Modifié(e) : Salaheddin Hosseinzadeh
le 27 Juin 2015
Hi,
Looks alright.
You can use xlim, ylim to limit the view and see the zero crossing location better, however assuming that we don't know where is the zero then you can manually zoom to find it or
ylim([-0.2,0.2]); %this helps you see the zero crossing better
Good luck ;)
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Graphics Object Programming dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!