TQIPS_WRITE_IPS_DATA_TO_FILE
Fortran |
TQIPS_WRITE_IPS_DATA_TO_FILE(FILENAME,IERR,IWSG,IWSE) |
|
---|---|---|
C-interface |
tq_ips_write_ips_data_to_file(TC_STRING filename, TC_INT* ierr, TC_INT* iwsg, TC_INT* iwse) |
|
Full name: |
Write the data of the interpolation scheme to file. |
|
Purpose: |
To save all the data of the interpolation scheme in order to read them at a later time with routine tqips_read_ips_data_from_file. |
|
Arguments |
||
Name |
Type |
Value set on call or returned |
FILENAME |
Character*256 |
The name of the file to be saved |
IERR |
Integer |
Returns the error code |
IWSG |
Integer array |
Workspace |
IWSE |
Integer array |
Workspace |

Note the following conventions to distinguish between the programming languages.
- Routines starting with TQXXX, for example, TQGDAT, are in the Fortran interface
- Routines starting with tq_xxxx, for example tq_gdat, are in the C-interface.
- In Fortran, all routines are subroutines and do not return any values except where explicitly declared as functions.
- All the C procedures are declared as void and do not return any values except where explicitly otherwise declared.
An example of how to read the subroutine definitions.