Home > systems > transformBasis.m
Change of basis for parameters of a LDS
function sysParamOut = transformBasis(sysParam,P)
Change of basis for parameters of a LDS
Given an invertible matrix P, this function transforms the parameters
of the LDS in the following manner
A = P.A.inv(P)
C = C.inv(P)
(Z,Z0,B) = P.(Z,Z0,B)
INPUTS
sysParam - Input system structure with LDS parameters (order n)
P - Change of basis matrix (nxn) that needs to be applied.
OUTPUTS
sysParamOut - Structure containing systems parameters in the new basis.
EXAMPLE
% Written by : Avinash Ravichandran
% $DATE : 26-Aug-2011 21:53:33 $
% $REVISION : 1.00 $