vwrite VIRTUAL ARRAYS vwrite NAME vwrite - write a data element to a virtual array SYNOPSIS VOID vwrite(array_select, index, data) COUNT array_select; LONG index; TEXT *data; FUNCTION vwrite places the data element pointed to by data into the virtual array at element location index in virtual array array_select. RETURNS nothing. EXAMPLE To write a double precision value to the virtual array declared in the VDIM() example: DOUBLE d; vwrite(2, 3200L, &d); BUGS The same warnings about alignments should be made here. The trouble isn't so bad however because the size declaration made when dimensioning the array forces even storage locations.