Artifact 25cb36fec879cf9e6549f3f93aba94e5d18f99b170808a7b46374ee02520e9cf:
- Executable file mtt/lib/rep/sfun_rep/insert_file.sh — part of check-in [af3953deae] at 2021-03-01 11:39:42 on branch master — Cleanup repository after cvs2git conversion. (user: jeff@gridfinity.com, size: 244) [annotate] [blame] [check-ins using] [more...]
- Executable file
mttroot/mtt/lib/rep/sfun_rep/insert_file.sh
— 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: 244) [annotate] [blame] [check-ins using]
#! /usr/bin/gawk -f # script to replace the line: "/* insert filename */" with the contents of file "filename" ($1 != "/*" || $2 != "insert" || $4 != "*/") { print } ($1 == "/*" && $2 == "insert" && $4 == "*/") { cmd = "cat " $3 ; system(cmd) }