MATLAB APPLICATION DEPLOYMENT - WEB EXAMPLE GUIDE User's Guide Page 145

  • Download
  • Add to my manuals
  • Print
  • Page
    / 274
  • Table of contents
  • TROUBLESHOOTING
  • BOOKMARKS
  • Rated. / 5. Based on customer reviews
Page view 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;
}
Page view 144
1 2 ... 140 141 142 143 144 145 146 147 148 149 150 ... 273 274

Comments to this Manuals

No comments