| MF_store
| MD_store |
ME_store |
| MCF_store |
MCD_store |
MCE_store |
|
| Function | store a matrix in binary format into a stream |
|
| Syntax C/C++ | #include <MFstd.h>
void MF_store( FILE *stream, fMatrix MA, unsigned ht, unsigned len ); |
| C++ MatObj | #include <OptiVec.h>
void matrix<T>::store( FILE *stream ); |
| Pascal/Delphi | uses MFstd;
procedure MF_store( var Stream:FILE; MA:fMatrix; ht, len:UInt ); |
|
| Description | The matrix MA of ht*len elements is written to stream in binary format. The stream must be already open for binary write operations. |
|
|