109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
{
#elif (CODEGENTARGET == OCTAVEDLD)
#include <octave/oct.h>
#include <variables.h>
#include "${Sys}_def.h"
DEFUN_DLD (${Sys}_input, args, ,
"Usage: [mttu] = ${Sys}_input()
Octave input (-stdin) representation of system ${Sys}
Generated by MTT on `date`")
{
octave_value_list retval;
#endif // (CODEGENTARGET == STANDALONE)
ColumnVector mttu (MTTNU);
|
|
|
|
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
{
#elif (CODEGENTARGET == OCTAVEDLD)
#include <octave/oct.h>
#include <variables.h>
#include "${Sys}_def.h"
DEFUN_DLD (${Sys}_input, args, ,
"Usage: [mttu] = ${Sys}_input()\n\
Octave input (-stdin) representation of system ${Sys}\n\
Generated by MTT on `date`")
{
octave_value_list retval;
#endif // (CODEGENTARGET == STANDALONE)
ColumnVector mttu (MTTNU);
|