Revision 944, 1.1 kB
(checked in by smidl, 15 years ago)
|
Doc + new examples
|
Line | |
---|
1 | /*! |
---|
2 | \file |
---|
3 | \brief check how the structure is processed |
---|
4 | |
---|
5 | |
---|
6 | */ |
---|
7 | |
---|
8 | #include <stat/emix.h> |
---|
9 | #include <estim/particles.h> |
---|
10 | #include <estim/kalman.h> |
---|
11 | #include <mpdm/arx_agent.h> |
---|
12 | |
---|
13 | |
---|
14 | using namespace bdm; |
---|
15 | |
---|
16 | #ifdef MEX |
---|
17 | #include <mex/mex_parser.h> |
---|
18 | #include <mex/mex_function.h> |
---|
19 | #include <mex/mex_BM.h> |
---|
20 | |
---|
21 | void mexFunction ( int n_output, mxArray *output[], int n_input, const mxArray *input[] ) { |
---|
22 | // Check the number of inputs and output arguments |
---|
23 | if ( n_input<1 ) mexErrMsgTxt ( "Usage:\n" |
---|
24 | "instance=class_defaults(struct)\n" |
---|
25 | " struct % configuration structure of a class\n" |
---|
26 | "output:\n" |
---|
27 | " the same structure filled with the defaults.\n\n" |
---|
28 | "This operation is usefull for obtaining info about class defaults, or success of passing info to it" ); |
---|
29 | |
---|
30 | RV::clear_all(); |
---|
31 | //CONFIG |
---|
32 | UImxArray Cfg(input[0]); |
---|
33 | shared_ptr<root> r=UI::build<root>(Cfg); |
---|
34 | |
---|
35 | if ( n_output<1 ) mexErrMsgTxt ( "No output - nothing to do!" ); |
---|
36 | UImxArray Ret; |
---|
37 | UI::save(r, Ret.getRoot()); |
---|
38 | |
---|
39 | output[0] = Ret.create_mxArray(); |
---|
40 | } |
---|
41 | #endif |
---|