本文介绍了为什么Matlab函数“feval”需要?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
f = @sin;函数句柄可以用来调用一个函数。
val = f(1.0);
为什么需要feval?
val = feval(f,1.0);
何时有用?
对于
feval
,第一个参数可以是一个带引号的字符串,为您提供比函数句柄更大的灵活性。你可以做一些事情,比如使用一个基本名称后跟一个索引,如 fn1
, fn2
, fn3
,然后使用 feval(['fn',num2str(k)],x,y,z)动态调用它们;
。 A function handle can be used to call a function, e.g.
f = @sin;
val = f(1.0);
so why is "feval" ever needed?
val = feval(f, 1.0);
When is it useful?
解决方案
For feval
, the first argument can be a quoted string, giving you more flexibility than a function handle. You could do things like having functions with a base name followed by an index as in fn1
, fn2
, fn3
, and then invoke these dynamically using feval(['fn', num2str(k)], x, y, z);
.
这篇关于为什么Matlab函数“feval”需要?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
10-27 20:19