[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
int wfdbinit(char *record, WFDB_Anninfo *aiarray, unsigned int nann, WFDB_Siginfo *siarray, unsigned int nsig) |
stat
(in aiarray) specified for annotation file
(see section 3.3 Annotator Information Structures)
This function opens database files other than output signal files for a selected record. The code
n = wfdbinit(record, a, na, s, ns); |
is exactly equivalent to
n = annopen(record, a, na); if (n == 0) n = isigopen(record, s, ns); |
See section Example 9: A Signal Averager, for an illustration of the use of wfdbinit
.
See section osigopen, and see section osigfopen,
for methods of opening output signal files.