VEC_$DZERO Domain/OS VEC_$DZERO
NAME
vec_$dzero - zero a double-precision vector
SYNOPSIS (C)
#include <apollo/base.h>
#include <apollo/vec.h>
void vec_$dzero(
double *vector,
long int &length)
SYNOPSIS (Pascal)
%include '/sys/ins/base.ins.pas';
%include '/sys/ins/vec.ins.pas';
procedure vec_$dzero(
var vector: univ vec_$double_vector;
in length: integer32);
SYNOPSIS (FORTRAN)
%include '/sys/ins/base.ins.ftn'
%include '/sys/ins/vec.ins.ftn'
parameter (nvec = 10)
double precision vector(nvec)
integer*4 length
call vec_$dzero(vector, length)
DESCRIPTION
Vec_$dzero zeros the first length elements of the double-precision vector
vector.
In C, the resulting operation is
for (i = 0; i < length; ++i)
vector[i] = 0.0;
In Pascal, the resulting operation is
for i := 1 to length do
vector[i] := 0.0;
In FORTRAN, the resulting operation is
do 10 i = 1, length
vec(i) = 0.0
10 continue
vector
The vector to be zeroed.
length
The number of elements in vector to zero.
NOTES
In C and Pascal, vec_$dzero zeros row vectors; whereas in FORTRAN, it
zeros column vectors.
SEE ALSO
vec_$dzero_i, vec_$izero, vec_$izero16, vec_$zero.