|
Exodus
7.10
|
#include "exodusII.h"#include "exodusII_int.h"#include "netcdf.h"#include <stddef.h>#include <stdio.h>Functions | |
| int | ex_put_coord_names (int exoid, char *coord_names[]) |
| int ex_put_coord_names | ( | int | exoid, |
| char * | coord_names[] | ||
| ) |
The function ex_put_coord_names() writes the names of the coordinate arrays to the database. Memory must be allocated for the character strings before this function is invoked.
In case of an error, ex_put_coord_names() returns a negative number; a warning will return a positive number. Possible causes of errors include:
| [in] | exoid | exodus file ID returned from a previous call to ex_create() or ex_open(). |
| [in] | coord_names | Array containing num_dim names of length ...max_name_length... of the nodal coordinate arrays. |
The following coding will write the coordinate names to an open exodus file :