func_handle = str2func(str)
| Parameter | Description |
|---|---|
| str | a string |
| Parameter | Description |
|---|---|
| func_handle | 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 |