Generate code for the given set of options.
skfgen(options);
options | A |
---|---|
(etc.) | Option-value pairs (see below) |
interfaces | A cell array containing the interfaces used by the generated code, for reference |
---|
'output' | True if files should be written (Use false for testing or to return just the interfaces.) |
---|---|
'autobuild' | Look in the base workspace for any variables that are necessary to build the MEX file or generate C code (applicable only when these are selected) |
Generating an extened Kalman filter with the default options looks like:
options = skfoptions();
options.filter_name = 'extended_kalman_filter';
skfgen(options);
*kf
v1.0.3