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

2 views (last 30 days)
Tunca Mehmet
Tunca Mehmet on 24 May 2018
Commented: Tunca Mehmet on 24 May 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

Answers (1)

Torsten
Torsten on 24 May 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.

Categories

Find more on Mathematics and Optimization in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!