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

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

Best Java code snippets using us.ihmc.yoVariables.providers.DoubleProvider.getValue (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

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/ekf

@Override
public void getQMatrix(DenseMatrix64F matrixToPack)
{
 matrixToPack.reshape(size, size);
 CommonOps.fill(matrixToPack, 0.0);
 matrixToPack.set(angularAccelerationStart + 0, angularAccelerationStart + 0, angularAccelerationVariance.getValue() * sqrtHz);
 matrixToPack.set(angularAccelerationStart + 1, angularAccelerationStart + 1, angularAccelerationVariance.getValue() * sqrtHz);
 matrixToPack.set(angularAccelerationStart + 2, angularAccelerationStart + 2, angularAccelerationVariance.getValue() * sqrtHz);
 matrixToPack.set(linearAccelerationStart + 0, linearAccelerationStart + 0, linearAccelerationVariance.getValue() * sqrtHz);
 matrixToPack.set(linearAccelerationStart + 1, linearAccelerationStart + 1, linearAccelerationVariance.getValue() * sqrtHz);
 matrixToPack.set(linearAccelerationStart + 2, linearAccelerationStart + 2, linearAccelerationVariance.getValue() * sqrtHz);
}
origin: us.ihmc/ihmc-robotics-toolkit

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

private void updateUsingDifference(double difference)
{
 double previousFilteredDerivative = getDoubleValue();
 double currentRawDerivative = difference / dt;
 double alpha = alphaVariable.getValue();
 this.set(alpha * previousFilteredDerivative + (1.0 - alpha) * currentRawDerivative);
}
origin: us.ihmc/ihmc-avatar-interfaces

private void updateForwardVelocity(double alpha)
{
 double minMaxVelocity = maxStepLength / stepTime.getValue();
 forwardVelocityProperty.set(minMaxVelocity * MathTools.clamp(alpha, 1.0));
}
origin: us.ihmc/ihmc-avatar-interfaces

private void updateLateralVelocity(double alpha)
{
 double minMaxVelocity = maxStepWidth / stepTime.getValue();
 lateralVelocityProperty.set(minMaxVelocity * MathTools.clamp(alpha, 1.0));
}
origin: us.ihmc/ihmc-robotics-toolkit

private void updateUsingDifference(double difference)
{
 double previousFilteredDerivative = getDoubleValue();
 double currentRawDerivative = difference / dt;
 double alpha = alphaVariable == null ? alphaDouble : alphaVariable.getValue();
 set(alpha * previousFilteredDerivative + (1.0 - alpha) * currentRawDerivative);
}
origin: us.ihmc/ihmc-common-walking-control-modules-test

@ContinuousIntegrationTest(estimatedDuration = 0.0)
@Test(timeout = 30000)
public void testOrientation()
{
 trajectoryGenerator.setControlHandAngleAboutAxis(true);
 // v = omega x r
 checkVEqualsOmegaCrossR(worldFrame, trajectoryGenerator, random);
 checkOrientationAtVariousPoints(trajectoryGenerator, initialOrientationProvider, trajectoryTimeProvider.getValue(), worldFrame);
}
origin: us.ihmc/ekf

@Override
public void getRMatrix(DenseMatrix64F matrixToPack)
{
 matrixToPack.reshape(getMeasurementSize(), getMeasurementSize());
 CommonOps.setIdentity(matrixToPack);
 CommonOps.scale(variance.getValue() * sqrtHz, matrixToPack);
}
origin: us.ihmc/ihmc-robotics-toolkit

@Override
public void initialize()
{
 currentTime.set(0.0);
 trajectoryTime.set(trajectoryTimeProvider.getValue());
 parameterPolynomial.setQuintic(0.0, trajectoryTime.getDoubleValue(), 0.0, 0.0, 0.0, 1.0, 0.0, 0.0);
 updateInitialPosition();
 updateFinalPosition();
}
origin: us.ihmc/ihmc-robotics-toolkit

private void updateActionMode()
{
 timeInCurrentMode.add(controlDt);
 updateWindowSize();
 StictionActionMode estimatedCurrentMode = estimateCurrentActionMode();
 if (timeInCurrentMode.getDoubleValue() > minTimeInMode.getValue() && estimatedCurrentMode != stictionActionMode.getEnumValue())
 {
   stictionActionMode.set(estimatedCurrentMode);
   timeInCurrentMode.set(0.0);
 }
}
us.ihmc.yoVariables.providersDoubleProvidergetValue

Popular methods of DoubleProvider

    Popular in Java

    • Reactive rest calls using spring rest template
    • getSharedPreferences (Context)
    • startActivity (Activity)
    • scheduleAtFixedRate (Timer)
    • EOFException (java.io)
      Thrown when a program encounters the end of a file or stream during an input operation.
    • OutputStream (java.io)
      A writable sink for bytes.Most clients will use output streams that write data to the file system (
    • Calendar (java.util)
      Calendar is an abstract base class for converting between a Date object and a set of integer fields
    • Collection (java.util)
      Collection is the root of the collection hierarchy. It defines operations on data collections and t
    • Enumeration (java.util)
      A legacy iteration interface.New code should use Iterator instead. Iterator replaces the enumeration
    • XPath (javax.xml.xpath)
      XPath provides access to the XPath evaluation environment and expressions. Evaluation of XPath Expr
    • Top PhpStorm plugins
    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