XLPack 7.0
XLPack Numerical Library (C API) Reference Manual
Loading...
Searching...
No Matches

◆ 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]fnameOutput file name.
[in]nNumber 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]infoReturn code.
= 0: Normal return.
= i < 0: The (-i)-th argument is invalid or has an illegal value.
= 11: File open error.