www.gusucode.com > mbcdesign 工具箱 matlab 源码程序 > mbcdesign/@conswitch/reconstruct.m

    function lcon = reconstruct(con,Xop)
%RECONSTRUCT reconstruct local boundary at operating point
%
% lcon = reconstruct(con,Xg);

%  Copyright 2008 The MathWorks, Inc. 


ind = findOpPoints(con,Xop);
if ind
    lcon = con.ConList{ind};
else
    lcon = [];
end