Matlab integral funtion error
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Leon Ellis
le 4 Août 2021
Réponse apportée : Pere Garau Burguera
le 4 Août 2021
Hi, I can't seem to get the integral function to work correctly.
syms x
z=1/(3-1)
f=@(x)(x.*exp((x.^2)-1))/sin(x)
fi=integral(f,1,3)
This is my code, however the integral function keeps giving errors and I am unable to fix the problem. Could someone please help? Thanks in advance!
0 commentaires
Réponse acceptée
Rik
le 4 Août 2021
The error tells you that you need to make sure f outputs the same size as the input.
f=@(x)(x.*exp((x.^2)-1))./sin(x);
% ^
% you forgot this one
fi=integral(f,1,3)
0 commentaires
Plus de réponses (2)
Pere Garau Burguera
le 4 Août 2021
The solution is given in the error message, you should use
fi=integral(f,1,3,'ArrayValued',true);
Cheers,
Pere
0 commentaires
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!