Saving Files

There are many ways of saving data from Gsharp:

  • Report format - each dataset in a separate column
  • ASCII format - output a single dataset in a column
  • Folder format - Gsharp's own internal format for archiving the data for a later session
  • Binary format - stores a dataset in binary format - either float, int, byte or short.
  • GSL Script - stores the plot as a GSL script

To save in any of the formats:

  • Click on the Save icon of the command toolbar
  • Set the Save as type to the appropriate type
  • Specify the filename
  • Click on Save.

There are other methods of getting data out of Gsharp

  • Using GSL commands such as fopen, fwrite, fprintf and fclose. A library of convenience functions for creating HTML can also be included in your script using:
    include "$UNIDIR/lib/libhtml.gsl";
  • Into a database using the ODBC connectivity
  • Using your own C or FORTRAN output routines linked in using UserFunc.c

Return to Gsharp Reference Manual.