Text-only
Table of Contents (
frame
/
no frame
)
(27) Matlab Calling Priority
MATLAB Calling Priority
In order of priority:
variable
built-in function
subfunction
private function
MEX-file (compiled m-file)
P-file (pseudocode created from m-file)
M-file
try:
>>
sin = 'this is a test'
sin(3)
which sin
clear sin
which sin
sin(3)
P-code
- for most calculations p-code doesn't speed things up
use p-code to hide original m-file source code
Matlab_Calling_Priority.src last modified Oct 17, 2007
Introduction
Table of Contents
(
frame
/
no frame
)
Printable
(single file)
© Dartmouth College