Effacer les filtres
Effacer les filtres

Why this error using integral function?

1 vue (au cours des 30 derniers jours)
Ove Gustafsson
Ove Gustafsson le 10 Mar 2015
Commenté : Ove Gustafsson le 11 Mar 2015
What is wrong?
>> T = @(x) 1/x; >> Q=integral(T,1,1000); Undefined function 'minus' for input arguments of type 'function_handle'.
Error in integral (line 4) N=(hmax-hmin)/0.0001;

Réponse acceptée

Michael Haderlein
Michael Haderlein le 10 Mar 2015
Fun thing is I get a different error message:
Error using /
Matrix dimensions must agree.
Anyway, if you change your definition of T to
T=@(x) 1./x;
(note the dot!), it should work.
  1 commentaire
Ove Gustafsson
Ove Gustafsson le 11 Mar 2015
Thank you for the answer. You are right it has to be 1./x since the function has to handle arrays, but the main problem was quit different. Since I downloaded a set of MatLab-files within an application that used the name integral for a function of there own, integral.m, and the path was set so MatLab was looking there first. the new integral.m didn't work in the same way as the original integral.m of MatLab. Sorry for troubling you with a trivial problem. Best regard

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Programming dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by