Using feval on varying set of arguments
조회 수: 1 (최근 30일)
이전 댓글 표시
I'm using feval inside a function check_gradient. The setting is like this:
function iscorrect = check_gradient(f,grad,x0)
and feval as: feval(f,x0+del)-feval(f,x0).
But the thing is sometimes, I want to use feval inside my function check_gradient as
function iscorrect = check_gradient(f,grad,x0,b,mu,eps)
feval(f,x0+del,b,mu,eps)-feval(f,x0,b,mu,eps)
(I'm defining function handles 'f' that can take a varying number of arguments)
How do I factor in all such cases without defining a separate check_gradient function for each case?
Thanks a lot.
댓글 수: 0
답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!