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

2 visualizzazioni (ultimi 30 giorni)
Tunca Mehmet
Tunca Mehmet il 24 Mag 2018
Commentato: Tunca Mehmet il 24 Mag 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

Risposte (1)

Torsten
Torsten il 24 Mag 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.

Categorie

Scopri di più su Mathematics and Optimization in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by