/**
  * <summary>
  *   Configures NTC thermistor parameters in order to properly compute the temperature from
  *   the measured resistance.
  * <para>
  *   For increased precision, you can enter a complete mapping
  *   table using set_thermistorResponseTable. This function can only be used with a
  *   temperature sensor based on thermistors.
  * </para>
  * <para>
  * </para>
  * </summary>
  * <param name="res25">
  *   thermistor resistance at 25 degrees Celsius
  * </param>
  * <param name="beta">
  *   Beta value
  * </param>
  * <returns>
  *   <c>0</c> if the call succeeds.
  * </returns>
  * <para>
  *   On failure, throws an exception or returns a negative error code.
  * </para>
  */
 public virtual int set_ntcParameters(double res25, double beta)
 {
     if (_func == null)
     {
         throw new YoctoApiProxyException("No Temperature connected");
     }
     return(_func.set_ntcParameters(res25, beta));
 }