MATLAB Function Reference |
不太懂overload是什麼 所以很多不知道怎麼翻譯 Execute builtin function from overloaded method
Syntax
builtin(function
,x1,...,xn) [y1,..,yn] = builtin(function
,x1,...,xn)
Description
builtin
is used in methods that overload builtin functions to execute the original builtin
function. 若 function
中包括內建函式(builtin function)的名字,則:
builtin(
根據給定的引數和函式來執行。function
,x1,...,xn)
[y1,..,yn] = builtin(
回傳多個輸出引數。function
,x1,...,xn)
Remarks
builtin
(...) is the same as feval
(...) except that it calls the original builtin version of the function even if an overloaded one exists. (For this to work you must never overload builtin
.)
See Also
brighten | bvp4c |