Borrar filtros
Borrar filtros

How to use the feval() function to evaluate the two input argument functions?

8 visualizaciones (últimos 30 días)
I need help with this homweork problem using feval(). I have tried using 'feval(xVal,denomFun(xVal))' but it keeps saying I am wrong. Thanks in advance.

Respuestas (1)

Walter Roberson
Walter Roberson el 26 de En. de 2018
The first argument to feval() needs to be the function to evaluate. You are trying to pass a value instead.
General syntax:
feval(Function_Information, parameter1, parameter2, ...)
For feval, the Function_Information can be a function handle, or an inline object, or a symbolic function (not a symbolic expression), or a scalar string object, or a character row vector (or some curvefit objects.)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by