  fwrite
  Builtin Function



      SSyynnooppssiiss
        Binary stream output.

      SSyynnttaaxx
        fwrite ( _F_I_L_E_N_A_M_E, _T_Y_P_E, _D_A_T_A )

      DDeessccrriippttiioonn
        fwrite writes _D_A_T_A to the file identified by _F_I_L_E_N_A_M_E. _D_A_T_A is
        cast, or converted to the data type identified in _T_Y_P_E. fwrite
        roughly mimincs the C programming language's fwrite library
        function.

        _D_A_T_A can either be a dense numeric matrix, or a string matrix.
        The size of the matrix does not need to be specified because the
        entire matrix is written.

        If _D_A_T_A is a string matrix, then the first character of each
        element is written to _F_I_L_E_N_A_M_E, after being coerced to type
        _T_Y_P_E.

        Allowable arguments are:


        _T_Y_P_E

             "char"



             "unsigned char"



             "short int"



             "unsigned int"



             "int"



             "float"



             "double"




     SSeeee AAllssoo
        FILES, fread, fseek, close, open, write





