Tabnine Logo
DoubleProvider
Code IndexAdd Tabnine to your IDE (free)

How to use
DoubleProvider
in
us.ihmc.yoVariables.providers

Best Java code snippets using us.ihmc.yoVariables.providers.DoubleProvider (Showing top 20 results out of 315)

origin: us.ihmc/ihmc-robotics-toolkit

@Override
public double getProportionalGain()
{
 return proportionalGain.getValue();
}
origin: us.ihmc/ihmc-robotics-toolkit

@Override
public double getPositionDeadband()
{
 return deadband.getValue();
}
origin: us.ihmc/ihmc-robotics-toolkit

@Override
public double getMaximumFeedback()
{
 return maxOutput.getValue();
}
origin: us.ihmc/ihmc-robotics-toolkit

@Override
public double getIntegralGain()
{
 return integralGain.getValue();
}
origin: us.ihmc/ihmc-robotics-toolkit

@Override
public double getTime()
{
 return timeProvider.getValue();
}
origin: us.ihmc/ihmc-robotics-toolkit

@Override
public double getTimeInCurrentState()
{
 return timeProvider.getValue() - timeOfLastStateChange;
}
origin: us.ihmc/ihmc-robotics-toolkit

@Override
public double getTime()
{
 return timeProvider.getValue();
}
origin: us.ihmc/ihmc-robotics-toolkit

  @Override
  public double getPositionDeadband()
  {
   return positionDeadband.getValue();
  }
}
origin: us.ihmc/ihmc-robotics-toolkit

@Override
public double getIntegralLeakRatio()
{
 return integralLeakRatio.getValue();
}
origin: us.ihmc/ihmc-robotics-toolkit

@Override
public void notifyStateChanged()
{
 timeOfLastStateChange = timeProvider.getValue();
}
origin: us.ihmc/ihmc-robotics-toolkit

  @Override
  public double getStictionMagnitude()
  {
   return stictionValue.getValue();
  }
}
origin: us.ihmc/ihmc-robotics-toolkit

  @Override
  public double getDerivativeGain()
  {
   return derivativeGain.getValue();
  }
};
origin: us.ihmc/ihmc-robotics-toolkit

@Override
public double getProportionalGain()
{
 return proportionalGain.getValue();
}
origin: us.ihmc/ihmc-robotics-toolkit

@Override
public double getDerivativeGain()
{
 return derivativeGain.getValue();
}
origin: us.ihmc/ihmc-robotics-toolkit

@Override
public double getMaxIntegralError()
{
 return maxIntegralError.getValue();
}
origin: us.ihmc/ihmc-robotics-toolkit

@Override
public void setX(double x)
{
 if (resetX)
 {
   this.x = x;
   resetX = false;
 }
 else
 {
   this.x = alpha.getValue() * this.x + (1.0 - alpha.getValue()) * x;
 }
}
origin: us.ihmc/ihmc-robotics-toolkit

@Override
public void compute(double x)
{
 double x_n = 1.0;
 value = 0.0;
 for (int index = 0; index < coefficients.size(); index++)
 {
   value = value + coefficients.get(index).getValue() * x_n;
   x_n = x_n * x;
 }
}
origin: us.ihmc/ihmc-robotics-toolkit

public void initialize()
{
 currentTime.set(0.0);
 this.trajectoryTime.set(trajectoryTimeProvider.getValue());
 polynomial.setQuadratic(0.0, trajectoryTime.getDoubleValue(), initialPositionProvider.getValue(), initialVelocityProvider.getValue(),
    finalPositionProvider.getValue());
}
origin: us.ihmc/ihmc-robotics-toolkit

@Override
public void notifyStateChanged()
{
 timeOfLastStateChange.set(timeProvider.getValue());
}
origin: us.ihmc/ihmc-robotics-toolkit

public void initialize()
{
 currentTime.set(0.0);
 this.trajectoryTime.set(trajectoryTimeProvider.getValue());
 polynomial.setLinear(0.0, initialPositionProvider.getValue(), velocityProvider.getValue());
}
us.ihmc.yoVariables.providersDoubleProvider

Javadoc

Interface for providing doubles

Most used methods

  • getValue

Popular in Java

  • Updating database using SQL prepared statement
  • notifyDataSetChanged (ArrayAdapter)
  • compareTo (BigDecimal)
  • setRequestProperty (URLConnection)
  • IOException (java.io)
    Signals a general, I/O-related error. Error details may be specified when calling the constructor, a
  • PrintWriter (java.io)
    Wraps either an existing OutputStream or an existing Writerand provides convenience methods for prin
  • Socket (java.net)
    Provides a client-side TCP socket.
  • Set (java.util)
    A Set is a data structure which does not allow duplicate elements.
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • ReentrantLock (java.util.concurrent.locks)
    A reentrant mutual exclusion Lock with the same basic behavior and semantics as the implicit monitor
  • From CI to AI: The AI layer in your organization
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now