Integration using quad help

11 visualizzazioni (ultimi 30 giorni)
Ashis Pandey
Ashis Pandey il 6 Mar 2021
Risposto: darova il 6 Mar 2021
Can anyone explain why I am having an error
"Error in quad (line 67)
y = f(x, varargin{:});"???
I am trying to integrate e^(x)/((10*x)-1) with limits 0 to 200
y1 = quad('((exp.^(x)./((10.*x)-1)))',0,200)

Risposte (1)

darova
darova il 6 Mar 2021
try function handle
f = @(x) exp(x)./((10.*x)-1);
quad(f,0,200);
pay attention how i wrote

Prodotti


Release

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by