Ejemplo n.º 1
0
double structFormantGrid :: v_getVector (long irow, long icol) {
	RealTier tier = (RealTier) formants -> item [irow];
	return RealTier_getValueAtIndex (tier, icol);
}
Ejemplo n.º 2
0
double structRealTier :: v_getVector (long irow, long icol) {
	(void) irow;
	return RealTier_getValueAtIndex (this, icol);
}
Ejemplo n.º 3
0
static double getVector (I, long irow, long icol) { iam (RealTier); (void) irow; return RealTier_getValueAtIndex (me, icol); }
Ejemplo n.º 4
0
static double getVector (I, long irow, long icol) {
	iam (FormantGrid);
	RealTier tier = (structRealTier *)my formants -> item [irow];
	return RealTier_getValueAtIndex (tier, icol);
}