Differences From Artifact [ae40a63903]:
- Executable file
mttroot/mtt/lib/rep/sfun_rep/README.tmpl
— part of check-in
[f281078eb6]
at
2002-05-21 11:46:31
on branch origin/master
— MTT input block "sys_sfun_input.mexglx" created to provide inputs from MTT input file to plant model within Simulink.
The command "mtt sys sfun zip" now also creates a simple sys.mdl file which connects the input block to the plant block correctly. (user: geraint@users.sourceforge.net, size: 276) [annotate] [blame] [check-ins using] [more...]
To Artifact [4bfb771bf0]:
- Executable file
mttroot/mtt/lib/rep/sfun_rep/README.tmpl
— part of check-in
[0ae1960649]
at
2002-05-23 17:08:21
on branch origin/master
— `mtt sys sfun zip` now produces an input block and an interface block for MTT models.
Models can be embedded within larger Simulink models by the 2 ports.
The user must edit 2 code blocks in <sys>_sfun_interface.c before compiling with mex. (user: geraint@users.sourceforge.net, size: 356) [annotate] [blame] [check-ins using] [more...]
1 2 3 4 5 6 7 8 9 10 11 12 | To build a Simulink funtion of the <mtt_model_name> model without using MTT: mex <mtt_model_name>_sfun.c The input block can be created with: mex <mtt_model_name>_sfun_input.c If numerical solution of algebraic equations is also required: mex <mtt_model_name>_sfun_ae.c | > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | To build a Simulink funtion of the <mtt_model_name> model without using MTT: mex <mtt_model_name>_sfun.c The input block can be created with: mex <mtt_model_name>_sfun_input.c If numerical solution of algebraic equations is also required: mex <mtt_model_name>_sfun_ae.c The interface block can be created with mex <mtt_model_name>_sfun_interface.c |