how can I get y which correspond to x and then plot (x,y)??
    7 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
syms x y
x=[-4:1:4]
f = y^3+0.2*exp(-1*x^2)*y^2-2.2039*y^2+0.8155 == 0;
0 commentaires
Réponses (1)
  Rafael Hernandez-Walls
      
 le 16 Juin 2021
        Try this:
x=linspace(-4,4);
for r=1:length(x)
    y(r)=fzero(@(y)y.^3+0.2*exp(-1*x(r).^2)*y.^2-2.2039*y.^2+0.8155,1);
end
plot(x,y)
0 commentaires
Voir également
Catégories
				En savoir plus sur Calculus 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!

