|
|
◆ writecsv3()
| void writecsv3 |
( |
char * |
fname, |
|
|
int |
n, |
|
|
double |
x[], |
|
|
double |
y[], |
|
|
double |
z[], |
|
|
double |
u[], |
|
|
int * |
info |
|
) |
| |
Write coordinates and their values to CSV file (2D)
- Purpose
- Write two dimensional coordinates and their values to the CSV file.
- Parameters
-
| [in] | fname | Output file name. |
| [in] | n | Number of points. |
| [in] | x[] | Array x[lx] (lx >= n)
x-coordinates of nodes. |
| [in] | y[] | Array y[ly] (ly >= n)
y-coordinates of nodes. |
| [in] | z[] | Arraz z[lz] (lz >= n)
z-coordinates of nodes. |
| [in] | u[] | Arrau u[lu] (lu >= n)
Values at the points. |
| [out] | info | Return code.
= 0: Normal return.
= i < 0: The (-i)-th argument is invalid or has an illegal value.
= 11: File open error. |
|