double FilterCoeffGet ( RSIFilterGainPIDCoeff  coeff,
long  gainTable 
) [virtual]

Description:
FilterCoeffGet returns a filter coefficient
Parameters:
coeff Use a value in RSIFilterGainPIDCoeff or RSIFilterGainPIVCoeff.
gainTable An index, 0-4.
Returns:
(double) Value of the coefficient.
Sample Code:
  long coeff = (long) RSIFilterGainPIDCoeffOUTPUT_OFFSET;
  long gainTable = 0;

  printf("Output Offset coefficient %lf in Gain Table %ld\n", axis->FilterCoeffGet(coeff, gainTable);
See also:
FilterCoeffSet, RSIFilterGainPIDCoeff, RSIFilterGainPIVCoeff
Examples:
userLimitGainChangeBasedOnPosition.cpp.