www.gusucode.com > matlab 案例源码 matlab代码程序 > matlab/CheckIfMATLABFunctionIsBuiltinFunctionExample.m

    %% Check if MATLAB Function is Built-In Function
%%
% Check whether the |plot| function is a built-in function or a file.

% Copyright 2015 The MathWorks, Inc.

A = exist('plot')
%%
% This indicates that |plot| is a built-in MATLAB function.