The Complete SPRLIB & ANNLIB

SAMPLE

- structure holding information of specific data point

SYNOPSIS

typedef struct sample

{

long SampleId; Sample identification.

long SampleFlag; Sample flag.

double *Input; Input vector.

union out Output; Output vector or label.

union system_data SystemData; Union of data used by library.

union system_data UserData; Union of data for users.

struct sample *Next; Pointer to next data sample.

} SAMPLE;

typedef union out

{

double *Vector; Sample contains an output vector (see also DATASET-flags).

int Label; Sample contains an output label (dito).

} UNION;

This document was generated using api2html on Thu Mar 5 09:00:00 MET DST 1998