Dynamic-Calibration/utils/YALMIP-master/@sdpvar/extractkyp.m

8 lines
189 B
Mathematica
Raw Permalink Normal View History

2019-12-18 11:25:45 +00:00
function [A,B,P,M,negated] = extractkyp(sys);
%EXTRACTKYP Returns (A,B,P,M) from KYP object
A = sys.extra.A;
B = sys.extra.B;
P = sys.extra.P;
M = sys.extra.M;
negated = sys.extra.negated;