l = clearfun(function_name)
l = clearfun(function_handle)
| Paramètre | Description |
|---|---|
| function_name | une chaîne : nom de fonction. |
| function_handle | un handle de fonction. |
| Paramètre | Description |
|---|---|
| l | un booléen |
clearfun efface une fonction intégrée.
cos(3)
a = clearfun('cos')
cos(3)
sin(3)
b = clearfun(str2func('sin'))
sin(3)
| Version | Description |
|---|---|
| 1.0.0 | version initiale |