"Not enough input arguments" error when integrating a function
Afficher commentaires plus anciens
Hi guys,
I am trying to numerically integrate a function and keep receiving the error "Not enough input arguments."
My code:
integral(fun,0,1)
while fun.m reads:
function [ y ] = fun( x ) y = x*2 + 1; end
What am I missing here? Thanks in advance!
Réponses (2)
Kye Taylor
le 19 Mar 2013
You need to use a function handle... try
integral(@fun,0,1)
Fabian
le 19 Mar 2013
0 votes
1 commentaire
Kye Taylor
le 19 Mar 2013
Yeah... pass those variables as input to the function (best practice).
Also, please accept answers that you find helpful. (My first one.)
Catégories
En savoir plus sur Loops and Conditional Statements dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!