which
Gives a brief description on the origin of a function.
Syntax
which('A')
Inputs
- A
- Function name.
Outputs
This function returns no values.
Examples
which('sqrt')
'sqrt' is a built-in function
sqrt = 5
which('sqrt')
'sqrt' is a built-in function
function z=sqrt(a)
z=a/2;
end
which('sqrt')
'sqrt' is a user function