<< isfunction_handle | Function_handle functions |
func_handle = str2func(str) |
a string
a function handle.
function_handle = str2func(str) returns a function handle function_handle for the function named in the string str
str function name or representation of anonymous function.
fh = str2func('cos')
str = func2str(fh)
myFind = str2func('@(x, y) find(x > y)')
M = rand(4, 3, 5);
[R, C] = myFind(M, 0.9)
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET