ssGetCallSystemNumFcnCallDestinations

Получите количество адресатов вызовов функций.

Синтаксис

int_T ssGetCallSystemNumFcnCallDestinations(SimStruct *S, int_T elemIdx)

Аргументы

S

SimStruct, который представляет блок S-Function

elemIdx

Нулевой индекс элемента, который выводится на первый выходной порт.

Возвраты

int_T

Описание

Используется для определения количества адресатов вызовов функций, когда сигнал вызова функций разделен блоком Function-Call Split.

Языки

C, C++

Пример

static void mdlOutputs(SimStruct *S, int_T tid) {
    /* 
     * The second output port outputs the number of blocks 
     * being called to Out3
     */
    real_T *y     = ssGetOutputPortRealSignal(S, 1);
    int_T   numFC = ssGetCallSystemNumFcnCallDestinations(S, 0);
    y[0] = (real_T)numFC;
    UNUSED_PARAMETER(tid);
    /* The first output (function-call port) makes a function-call */
    if (!ssCallSystem(S,0)) {
        /* Error occurred which will be reported by Simulink */
    }
}
Введенный в R2010a
Для просмотра документации необходимо авторизоваться на сайте