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

    %% Obtain Analysis Point Names of slLinearizer Interface  

%% 
% Open Simulink model.
mdl = 'ex_scd_simple_fdbk';
open_system(mdl)

%%
% Create an |slLinearizer| interface to the model,
% and add some analysis points to the interface.
sllin = slLinearizer(mdl,{'r','e','u','y'});

%% 
% Get the names of all the analysis points associated with |sllin|. 
pt_names = getPoints(sllin)