Mercurial > hg > ltpda
comparison src/ltpda_ssmsim/ltpda_ssmsim.m @ 0:f0afece42f48
Import.
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 23 Nov 2011 19:22:13 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:f0afece42f48 |
---|---|
1 | |
2 % LTPDA_SSMSIM A mex file to propagate an input signal for a given SS model. | |
3 % | |
4 % function [y,x] = ltpda_ssmsim(lastX, A, Coutputs, Cstates, Baos, Daos, input); | |
5 % | |
6 % Inputs: | |
7 % lastX - the initial states | |
8 % A - The A matrix | |
9 % Coutputs - The C matrix containing elements only for the selected output | |
10 % Cstates - The C matrix containing elements only for the selected states | |
11 % Baos - The B matrix with elements only for the input AOs | |
12 % Daos - The D matrix with elements only for the input AOs | |
13 % input - The input signal vector | |
14 % | |
15 % Outputs: | |
16 % y = the output signal | |
17 % x = the output state vector | |
18 % | |
19 % M Hewitson 19-08-10 | |
20 % | |
21 |