how solve x on x+sin(x+y)=y
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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
0 commentaires
Réponses (1)
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.
Voir également
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!