ExportToPSSMatrix:

Path: Common/Interface

% Export two dimensional matrices to a file that can be read by pss_matrix.
 You can then read from the file in C++ using:
 
 #include 
  #include 
 
 ifstream matrixIn( fileName );
 matrixIn >>  matrix1;
 matrixIn >>  matrix2;
 matrixIn.close();

--------------------------------------------------------------------------
   Form:
   ExportToPSSMatrix( fileName, matrix1, matrix2, ... )
--------------------------------------------------------------------------

   ------
   Inputs
   ------
   fileName       (1,:)  File name
   matrix1        (:,:)  First matrix
   matrix2        (:,:)  Second matrix
   ...            (:,:)  Additional matrices

   -------
   Outputs
   -------
   None

--------------------------------------------------------------------------

Back to the Common Module page