rbmatlab  1.16.09
 All Classes Namespaces Files Functions Variables Modules Pages
SimData.m
1 classdef SimData < AbstractModel.SimData
2 % Simulation data for a solution to the ARE
3 %
4 % This class stores the low rank factor Z and the feedback gain matrix K.
5 %
6 % @author Andreas Schmidt, 2016
7 
8  properties
9  % Low rank factor of the solution
10  Z;
11  % If the problem was small, we also store the full solution
12  P;
13  % The gain matrix:
14  K;
15 
16  solver_info;
17  time;
18  end
19 end
Abstract OOP model implementation interface.
Implementation of the parametric algebraic Riccati equation.