solving an equatin... please help me
Infos
Cette question est clôturée. Rouvrir pour modifier ou répondre.
Afficher commentaires plus anciens
Réponses (1)
darova
le 23 Mai 2019
Also you can try fzero()
f = @(a,x) sin(a*x)./x;
F = @(a) integral(@(x)f(a,x),0,7)-0.8;
% a = fsolve(F,2); % didn't work
a = fzero(F,2);
F(a)
Cette question est clôturée.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!