MATLAB APPLICATION DEPLOYMENT - WEB EXAMPLE GUIDE Betriebsanweisung Seite 333

  • Herunterladen
  • Zu meinen Handbüchern hinzufügen
  • Drucken
  • Seite
    / 354
  • Inhaltsverzeichnis
  • FEHLERBEHEBUNG
  • LESEZEICHEN
  • Bewertet. / 5. Basierend auf Kundenbewertungen
Seitenansicht 332
void GetLogicalData(mxLogical* buffer, mwSize len)
const
Purpose Copy array’s data into supplied mxLogical buffer
C++
Syntax
#include "mclcppclass. h"
mxLogical data[4] = {true, false, true, false};
mxLogical data_copy[4] ;
mwArray a(2, 2, mxLOGICAL_CLASS);
a.SetData(data, 4);
a.GetData(data_copy, 4);
Arguments buffer
Buffer to receive copy
len
Maximum length of buffer. A maximum of len elements will be
copied.
Return
Value
None
Description The data is copied in column-major order. If the underlying array is not
of type
mxLOGICAL_CLASS, the data is converted to this type as it is
copied. I f a conv ersion cannot be made, an
mwException is throw n .
C-79
Seitenansicht 332
1 2 ... 328 329 330 331 332 333 334 335 336 337 338 ... 353 354

Kommentare zu diesen Handbüchern

Keine Kommentare