Effacer les filtres
Effacer les filtres

Numerical integration using a quad function

1 vue (au cours des 30 derniers jours)
Amy
Amy le 14 Mar 2014
Commenté : Benjamin Avants le 15 Mai 2014
I have created the following function
function x = rZSum(y, z)
y= load('delta.txt');
z = load('aSqr.txt');
x = y./z;
end
I would now like to use this function in numerical integration, evaluating it between 0 and 0.9999.
I have tried both
quad(rZSum,0,0.9999)
and
quadl(rZSum,0,0.9999)
with the same error being thrown up each time
Error using fcnchk (line 103)
FUN must be a function, a valid string expression, or an inline function object.
Would anyone be able to guide me on where I am going wrong, or what the error means? As integrating in matlab is new to me. Thank you in advanced!
  4 commentaires
Amy
Amy le 15 Mar 2014
Thank you for the help, however when I run
func(rZSum(y,z),0,0.9999)
The following error is now being thrown up
Undefined function or variable 'y'.
And when I try to use
trapz(rZSum,0,0.9999)
the following error is being thrown up
Error using trapz (line 55)
X must be a vector.
Benjamin Avants
Benjamin Avants le 15 Mai 2014
I feel silly about not catching this earlier, but if you're still having problems, you need to change the definition of your function. Since you load y and z from inside the function, you need to remove them as parameters from the function definition.

Connectez-vous pour commenter.

Réponses (0)

Catégories

En savoir plus sur Numerical Integration and Differentiation dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by