generateSSmodel             package:dse2             R Documentation

_R_a_n_d_o_m_l_y _g_e_n_e_r_a_t_e _a _s_t_a_t_e _s_p_a_c_e _m_o_d_e_l

_D_e_s_c_r_i_p_t_i_o_n:

     Randomly generate a state space model.

_U_s_a_g_e:

         generateSSmodel(m,n,p, stable=FALSE)

_A_r_g_u_m_e_n_t_s:

   n,m,p: Input, state and output dimensions.

  stable: TRUE or FALSE indicating if the model must be stable.

_D_e_t_a_i_l_s:

     Randomly generate a state space model. If stable is true then the
     largest root will have magnitude less than 1.0.

_V_a_l_u_e:

     An SS TSmodel.

_E_x_a_m_p_l_e_s:

     z <-  generateSSmodel(2,3,1)

