matlab_23550/Inu/wrapper_inu.h
2024-12-27 10:50:32 +03:00

26 lines
720 B
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**************************************************************************
Description: Задание количества входов, выходов, параметров, а также
размера рабочих векторов S-function.
Автор: Улитовский Д.И.
Дата последнего обновления: 2021.09.22
**************************************************************************/
#ifndef WRAPPER
#define WRAPPER
#define INPUT_0_WIDTH 20 //кол-во входов
#define OUTPUT_0_WIDTH 49 //кол-во выходов
#define NPARAMS 1 //кол-во параметров (скаляров и векторов)
#define RWORK_0_WIDTH 5 //width of the real-work vector
#define IWORK_0_WIDTH 5 //width of the integer-work vector
void controller(SimStruct *S, const real_T *u, real_T *xD, real_T *rW,
int_T *iW);
#endif