Artifact ea07b68f510c7aa42dbb9fa08ff804a856b93a965fd280d3d63f14a4ffedbfc5:
- Executable file mtt/bin/trans/sympar2par_txt2m — 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: 856) [annotate] [blame] [check-ins using] [more...]
- Executable file
mttroot/mtt/bin/trans/sympar2par_txt2m
— part of check-in
[d9e3b30dc2]
at
2002-05-15 14:22:26
on branch origin/master
— Code for Simulink S-function target written direct to sfun.cc instead of
calling .mexglx files. This eliminates the sfun dependency on Octave
ColumnVectors. sys_sfun.cc should build directly on a MS Windows machine
(can't test this yet).added sfun.zip target to create source code to export. (user: geraint@users.sourceforge.net, size: 856) [annotate] [blame] [check-ins using]
#! /bin/sh
######################################
##### Model Transformation Tools #####
######################################
# Bourne shell script: sympar2par_txt2m
# Symbolic parameters parameter conversion
# Used in lang_header
# Copyright (C) 2000 by Peter J. Gawthrop
Lb=${5:-'('}
Rb=${6:-')'}
case $2 in
zero)
strip_comments <$1_sympar.txt |\
gawk '{
i++; printf(" %s %s = 0.0;\n", tolower($1));
}'
;;
set)
strip_comments <$1_sympar.txt |\
gawk '{
i++; printf(" %s mttpar(%i) \t= %s;\n", i, tolower($1));
}'
;;
*)
strip_comments <$1_sympar.txt |\
gawk '{
i++; printf(" %s %s \t= mttpar%c%i%s%c;\n", decl, tolower($1), Lb, i, minusone, Rb);
}' decl="$3" minusone="$4" Lb=$Lb Rb=$Rb
;;
esac