【正文】
課程設計說明書 (論文) 第 15 頁 課程設計說明書 (論文) 第 16 頁 … … … … … … 課程設計說明書 (論文) 第 17 頁 翻譯 關于 feval 的 Matlab help 原文如下: FEVAL Execute the specified function. FEVAL(F,x1,...,xn) evaluates the function specified by a function handle or function name, F, at the given arguments, x1,...,xn. For example, if F = @foo, FEVAL(F,) is the same as foo(). If a function handle is bound to more than one builtin or Mfile, (that is, it represents a set of overloaded functions), then the data type of the arguments x1 through xn, determines which function is executed. FEVAL is usually used inside functions which take function handles or function strings as arguments. 翻譯如下: Feval 用來執(zhí)行指定的功能。 FEVAL(F,x1,...,xn) F 是需要使用函數的函數名,或者句柄 。xi 是函數的參數。假設需要調用的函數 foo定義如下: F = @foo, FEVAL(F,)可以記作 foo().,如果一個句柄是內置的或是 M 文件( 那就是說 ,它代表一組重載函數 )那么參數x1 到 xn 的類型決定該函數是否被執(zhí)行。 Feval 一般被用于以字符串 以 句柄或功能函數 作為 參數的內置函數中 。