Argument of a function includes another function
显示 更早的评论
Hi all,
I have a file called "fofx.m", and it has this function
function y = fofx(x)
y = cos(x) - sin(x);
end
In another file (same directory), I have
function [l,r,nf] = bisect(fname,a,b,tol)
if(a == b)
if(fname(a) == 0)
l = a;
r = l;
nf = 0;
return;
end
end
The evaluation of fname at a is giving me trouble. I get a different error message, no matter how I try get this function evaluated. How can I evaluate fname at a?
回答(1 个)
Walter Roberson
2019-10-14
[leftbound, rightbound, whatever_nf_stands_for] = bisect(@fofx, some_a, some_b, tolerance_to_use);
类别
在 帮助中心 和 File Exchange 中查找有关 File Operations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!