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

3 visualizaciones (últimos 30 días)
Tunca Mehmet
Tunca Mehmet el 24 de Mayo de 2018
Comentada: Tunca Mehmet el 24 de Mayo de 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

Respuestas (1)

Torsten
Torsten el 24 de Mayo de 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 comentario
Tunca Mehmet
Tunca Mehmet el 24 de Mayo de 2018
i thing is good, thank you.

Iniciar sesión para comentar.

Categorías

Más información sobre Mathematics and Optimization en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by