Error calling 'int'. This call-site passes more inputs to this function than it can accept.
20 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I'm trying to make a user defined function for integration. It gives an error Error calling 'int'. This call-site passes more inputs to this function than it can accept.
My code is:
function y = fcn(u,a,b)
%#codegen
y=int(u,a,b)
end
where a = t-0.1 ;
b=t
t is input from clock
Please help how to resolve this.
4 Commenti
Walter Roberson
il 28 Ott 2018
Are you sure you want to do symbolic integration?
What I suspect is that you want to use trapz()
Risposte (1)
madhan ravi
il 28 Ott 2018
Modificato: madhan ravi
il 28 Ott 2018
what happens when you do this :
y = integral ( @(t) u,a,b )
Vedere anche
Categorie
Scopri di più su General Applications in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!