MATLAB APPLICATION DEPLOYMENT - WEB EXAMPLE GUIDE Podręcznik Użytkownika Strona 145

  • Pobierz
  • Dodaj do moich podręczników
  • Drukuj
Przeglądanie stron 144
Internal Interface Functions
5-19
// function, appearing above.
//
mwArray Nfoo(int nargout,
mwArray * b,
mwArray x,
mwArray y) {
// ------------- Input Argument Processing ---------------
mwArray a = mwArray::UNDEFINED;
mwArray b__ = mwArray::UNDEFINED;
// ----------------- Call M-Function ---------------------
a = Mfoo(&b__, nargout, x, y);
// ------------- Input Argument Processing ---------------
if (b != NULL) {
*b = b__;
}
// ------------- Output Argument Processing --------------
return a;
}
Przeglądanie stron 144
1 2 ... 140 141 142 143 144 145 146 147 148 149 150 ... 273 274

Komentarze do niniejszej Instrukcji

Brak uwag