*kf
by An Uncommon Lab

skfgen

Generate code for the given set of options.

skfgen(options);

Inputs

options

A *kf option structure from skfoptions

(etc.)

Option-value pairs (see below)

Outputs

interfaces

A cell array containing the interfaces used by the generated code, for reference

Options

'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)

Example

Generating an extened Kalman filter with the default options looks like:

options = skfoptions();
options.filter_name = 'extended_kalman_filter';
skfgen(options);

See Also

skfengine, skfoptions

Table of Contents

  1. Inputs
  2. Outputs
  3. Options
  4. Example
  5. See Also