how solve x on x+sin(x+y)=y

3 vues (au cours des 30 derniers jours)
Tunca Mehmet
Tunca Mehmet le 24 Mai 2018
Commenté : Tunca Mehmet le 24 Mai 2018
hi guys,i'm new and my question is : solve x+sin(x+y)=y for y=0.5 and after that plot the equation for y(-4:0.1:4). it didn't work went i do this
y=(-4:0.1:4);
x=sqrt(((y.^2)/sin(y.^2)*cos(y.^2))-1);
plot(x,y)
thank you for your help

Réponses (1)

Torsten
Torsten le 24 Mai 2018
y=-4:0.1:4;
for i=1:numel(y)
y_actual=y(i);
x(i)=fzero(@(x)x+sin(x+y_actual)-y_actual,1);
end
plot(x,y)
Best wishes
Torsten.
  1 commentaire
Tunca Mehmet
Tunca Mehmet le 24 Mai 2018
i thing is good, thank you.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Mathematics and Optimization 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!

Translated by