- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中us.ihmc.robotics.math.frames.YoFrameVector.scale()
方法的一些代码示例,展示了YoFrameVector.scale()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YoFrameVector.scale()
方法的具体详情如下:
包路径:us.ihmc.robotics.math.frames.YoFrameVector
类名称:YoFrameVector
方法名:scale
暂无
代码示例来源:origin: us.ihmc/IHMCRoboticsToolkit
public void scaleAngularPart(double scaleFactor)
{
angularPart.scale(scaleFactor);
}
代码示例来源:origin: us.ihmc/IHMCRoboticsToolkit
public void scaleLinearPart(double scaleFactor)
{
linearPart.scale(scaleFactor);
}
代码示例来源:origin: us.ihmc/CommonWalkingControlModules
public void setWeight(double weight)
{
yoAngularWeight.set(1.0, 1.0, 1.0);
yoAngularWeight.scale(weight);
yoLinearWeight.set(1.0, 1.0, 1.0);
yoLinearWeight.scale(weight);
}
代码示例来源:origin: us.ihmc/CommonWalkingControlModules
public void setWeight(double weight)
{
angularWeight.set(1.0, 1.0, 1.0);
angularWeight.scale(weight);
linearWeight.set(1.0, 1.0, 1.0);
linearWeight.scale(weight);
}
代码示例来源:origin: us.ihmc/CommonWalkingControlModules
public void setDesiredTorqueOfHandOntoExternalEnvironment(Vector3d desiredTorque)
{
if (desiredTorque == null)
{
this.desiredTorque.setToZero();
}
else
{
this.desiredTorque.set(desiredTorque);
this.desiredTorque.scale(-1.0);
}
}
代码示例来源:origin: us.ihmc/CommonWalkingControlModules
public void setDesiredForceOfHandOntoExternalEnvironment(Vector3d desiredForce)
{
if (desiredForce == null)
{
this.desiredForce.setToZero();
}
else
{
this.desiredForce.set(desiredForce);
this.desiredForce.scale(-1.0);
}
}
代码示例来源:origin: us.ihmc/CommonWalkingControlModules
/**
* Compute the desired capture point acceleration given the desired capture
* point velocity
*
* @param omega0 the natural frequency ω = √<span style="text-decoration:overline;"> g / z0 </span> of the biped.
* @param desiredCapturePointVelocity
* @param desiredCapturePointAccelerationToPack
*/
public static void computeDesiredCapturePointAcceleration(double omega0, YoFrameVector desiredCapturePointVelocity,
YoFrameVector desiredCapturePointAccelerationToPack)
{
desiredCapturePointAccelerationToPack.setAndMatchFrame(desiredCapturePointVelocity.getFrameTuple());
desiredCapturePointAccelerationToPack.scale(omega0);
}
代码示例来源:origin: us.ihmc/CommonWalkingControlModules
public void progressivelyCancelOutCorrection(FramePoint desiredPosition, FrameOrientation desiredOrientation)
{
yoCompliantControlLinearDisplacement.scale(compliantControlResetLeakRatio.getDoubleValue());
yoCompliantControlAngularDisplacement.scale(compliantControlResetLeakRatio.getDoubleValue());
yoCompliantControlLinearDisplacement.getFrameTupleIncludingFrame(totalLinearCorrection);
yoCompliantControlAngularDisplacement.getFrameTupleIncludingFrame(totalAngularCorrection);
totalLinearCorrection.changeFrame(controlFrame);
totalAngularCorrection.changeFrame(controlFrame);
applyCorrection(desiredPosition, desiredOrientation);
}
代码示例来源:origin: us.ihmc/CommonWalkingControlModules
private void decayDesiredVelocityIfNeeded(double timeInCurrentState)
{
if (velocityDecayDurationWhenDone.isNaN() || isStanding.getBooleanValue())
{
velocityReductionFactor.set(Double.NaN);
return;
}
double hasBeenDoneForDuration = timeInCurrentState;
if (isDoubleSupport.getBooleanValue())
hasBeenDoneForDuration -= transferTimes.get(0).getDoubleValue();
else
hasBeenDoneForDuration -= swingTimes.get(0).getDoubleValue();
if (hasBeenDoneForDuration <= 0.0)
{
velocityReductionFactor.set(Double.NaN);
}
else
{
velocityReductionFactor.set(MathTools.clipToMinMax(1.0 - hasBeenDoneForDuration / velocityDecayDurationWhenDone.getDoubleValue(), 0.0, 1.0));
desiredCapturePointVelocity.scale(velocityReductionFactor.getDoubleValue());
}
}
代码示例来源:origin: us.ihmc/SensorProcessing
private void updateAngularVelocity()
{
firstIMU.getAngularVelocityMeasurement(firstVector);
secondIMU.getAngularVelocityMeasurement(secondVector);
firstFrameVector.setIncludingFrame(firstIMU.getMeasurementFrame(), firstVector);
secondFrameVector.setIncludingFrame(secondIMU.getMeasurementFrame(), secondVector);
firstFrameVector.changeFrame(fusedMeasurementFrame);
secondFrameVector.changeFrame(fusedMeasurementFrame);
angularVelocity.add(firstFrameVector, secondFrameVector);
angularVelocity.scale(0.5);
}
代码示例来源:origin: us.ihmc/SensorProcessing
private void updateLinearAcceleration()
{
firstIMU.getLinearAccelerationMeasurement(firstVector);
secondIMU.getLinearAccelerationMeasurement(secondVector);
firstFrameVector.setIncludingFrame(firstIMU.getMeasurementFrame(), firstVector);
secondFrameVector.setIncludingFrame(secondIMU.getMeasurementFrame(), secondVector);
firstFrameVector.changeFrame(fusedMeasurementFrame);
secondFrameVector.changeFrame(fusedMeasurementFrame);
linearAcceleration.add(firstFrameVector, secondFrameVector);
linearAcceleration.scale(0.5);
}
代码示例来源:origin: us.ihmc/IHMCRoboticsToolkit
@Override
public void compute(double time)
{
if (continuouslyUpdateFinalPosition.getBooleanValue())
{
updateFinalPosition();
}
this.currentTime.set(time);
time = MathTools.clipToMinMax(time, 0.0, trajectoryTime.getDoubleValue());
parameterPolynomial.compute(time);
differenceVector.sub(finalPosition, initialPosition);
double parameter = isDone() ? 1.0 : parameterPolynomial.getPosition();
double parameterd = isDone() ? 0.0 : parameterPolynomial.getVelocity();
double parameterdd = isDone() ? 0.0 : parameterPolynomial.getAcceleration();
currentPosition.interpolate(initialPosition, finalPosition, parameter);
currentVelocity.set(differenceVector);
currentVelocity.scale(parameterd);
currentAcceleration.set(differenceVector);
currentAcceleration.scale(parameterdd);
}
代码示例来源:origin: us.ihmc/CommonWalkingControlModules
private void updateOrientationVisualization()
{
desiredSpatialAcceleration.getAngularPart(desiredAngularAcceleration);
yoDesiredAngularAcceleration.setAndMatchFrame(desiredAngularAcceleration);
tempOrientation.setToZero(accelerationControlModule.getTrackingFrame());
yoCurrentOrientation.setAndMatchFrame(tempOrientation);
accelerationControlModule.getEndEffectorCurrentAngularVelocity(tempAngularVelocity);
yoCurrentAngularVelocity.setAndMatchFrame(tempAngularVelocity);
yoDesiredOrientation.get(tempAxisAngle);
yoDesiredRotationVector.set(tempAxisAngle.getX(), tempAxisAngle.getY(), tempAxisAngle.getZ());
yoDesiredRotationVector.scale(tempAxisAngle.getAngle());
yoCurrentOrientation.get(tempAxisAngle);
yoCurrentRotationVector.set(tempAxisAngle.getX(), tempAxisAngle.getY(), tempAxisAngle.getZ());
yoCurrentRotationVector.scale(tempAxisAngle.getAngle());
}
代码示例来源:origin: us.ihmc/IHMCSimulationToolkit
private void applyForce()
{
double length = pushDirection.length();
if (length > 1e-5)
{
pushForce.set(pushDirection);
pushForce.normalize();
pushForce.scale(pushForceMagnitude.getDoubleValue());
if(pushCondition == null)
{
pushTimeSwitch.set(yoTime.getDoubleValue());
}
}
else
{
pushForce.setToZero();
pushTimeSwitch.set(Double.NEGATIVE_INFINITY);
}
pushNumber.increment();
}
代码示例来源:origin: us.ihmc/CommonWalkingControlModules
@Override
public void compute()
{
if (!isEnabled())
return;
yoDesiredOrientation.getFrameOrientationIncludingFrame(tempOrientation);
yoDesiredAngularVelocity.getFrameTupleIncludingFrame(tempAngularVelocity);
yoFeedForwardAngularAcceleration.getFrameTupleIncludingFrame(feedForwardAngularAcceleration);
accelerationControlModule.compute(desiredAngularAcceleration, tempOrientation, tempAngularVelocity, feedForwardAngularAcceleration, base);
yoDesiredAngularAcceleration.setAndMatchFrame(desiredAngularAcceleration);
tempOrientation.setToZero(endEffectorFrame);
yoCurrentOrientation.setAndMatchFrame(tempOrientation);
accelerationControlModule.getEndEffectorCurrentAngularVelocity(tempAngularVelocity);
yoCurrentAngularVelocity.setAndMatchFrame(tempAngularVelocity);
yoDesiredOrientation.get(tempAxisAngle);
yoDesiredRotationVector.set(tempAxisAngle.getX(), tempAxisAngle.getY(), tempAxisAngle.getZ());
yoDesiredRotationVector.scale(tempAxisAngle.getAngle());
yoCurrentOrientation.get(tempAxisAngle);
yoCurrentRotationVector.set(tempAxisAngle.getX(), tempAxisAngle.getY(), tempAxisAngle.getZ());
yoCurrentRotationVector.scale(tempAxisAngle.getAngle());
output.setAngularAcceleration(endEffectorFrame, baseFrame, desiredAngularAcceleration);
}
代码示例来源:origin: us.ihmc/IHMCStateEstimation
public void updateIMUAndRootJointLinearVelocity(FrameVector rootJointVelocityToPack)
{
updateLinearAccelerationMeasurement();
yoLinearAccelerationMeasurementInWorld.getFrameTupleIncludingFrame(linearAccelerationMeasurement);
linearAccelerationMeasurement.scale(estimatorDT);
yoMeasurementFrameLinearVelocityInWorld.add(linearAccelerationMeasurement);
yoMeasurementFrameLinearVelocityInWorld.getFrameTupleIncludingFrame(rootJointVelocityToPack);
getCorrectionVelocityForMeasurementFrameOffset(correctionVelocityForMeasurementFrameOffset);
correctionVelocityForMeasurementFrameOffset.changeFrame(worldFrame);
rootJointVelocityToPack.sub(correctionVelocityForMeasurementFrameOffset);
yoRootJointIMUBasedLinearVelocityInWorld.set(rootJointVelocityToPack);
imuLinearVelocityIMUOnly.add(linearAccelerationMeasurement);
imuLinearVelocityIMUOnly.scale(alphaLeakIMUOnly.getDoubleValue());
rootJointLinearVelocityIMUOnly.set(imuLinearVelocityIMUOnly);
rootJointLinearVelocityIMUOnly.sub(correctionVelocityForMeasurementFrameOffset);
}
代码示例来源:origin: us.ihmc/IHMCRoboticsToolkit
private void computeIntegralTerm()
{
if (gains.getMaximumIntegralError() < 1e-5)
{
integralTerm.setToZero(bodyFrame);
return;
}
double errorIntegratedX = positionError.getX() * dt;
double errorIntegratedY = positionError.getY() * dt;
double errorIntegratedZ = positionError.getZ() * dt;
positionErrorCumulated.add(errorIntegratedX, errorIntegratedY, errorIntegratedZ);
double errorMagnitude = positionErrorCumulated.length();
if (errorMagnitude > gains.getMaximumIntegralError())
{
positionErrorCumulated.scale(gains.getMaximumIntegralError() / errorMagnitude);
}
positionErrorCumulated.getFrameTuple(integralTerm);
integralGainMatrix.transform(integralTerm.getVector());
}
代码示例来源:origin: us.ihmc/IHMCRoboticsToolkit
private void computeIntegralTerm()
{
if (gains.getMaximumIntegralError() < 1e-5)
{
integralTerm.setToZero(bodyFrame);
return;
}
double integratedErrorAngle = errorAngleAxis.getAngle() * dt;
double errorIntegratedX = errorAngleAxis.getX() * integratedErrorAngle;
double errorIntegratedY = errorAngleAxis.getY() * integratedErrorAngle;
double errorIntegratedZ = errorAngleAxis.getZ() * integratedErrorAngle;
rotationErrorCumulated.add(errorIntegratedX, errorIntegratedY, errorIntegratedZ);
double errorMagnitude = rotationErrorCumulated.length();
if (errorMagnitude > gains.getMaximumIntegralError())
{
rotationErrorCumulated.scale(gains.getMaximumIntegralError() / errorMagnitude);
}
rotationErrorCumulated.getFrameTuple(integralTerm);
integralGainMatrix.transform(integralTerm.getVector());
}
代码示例来源:origin: us.ihmc/CommonWalkingControlModules
private void computeIntegralTerm(ReferenceFrame baseFrame)
{
if (gains.getMaximumIntegralError() < 1e-5)
{
integralTerm.setToZero(baseFrame);
return;
}
double errorIntegratedX = positionError.getX() * dt;
double errorIntegratedY = positionError.getY() * dt;
double errorIntegratedZ = positionError.getZ() * dt;
positionErrorCumulated.add(errorIntegratedX, errorIntegratedY, errorIntegratedZ);
double errorMagnitude = positionErrorCumulated.length();
if (errorMagnitude > gains.getMaximumIntegralError())
{
positionErrorCumulated.scale(gains.getMaximumIntegralError() / errorMagnitude);
}
positionErrorCumulated.getFrameTupleIncludingFrame(integralTerm);
integralTerm.changeFrame(baseFrame);
integralGainMatrix.transform(integralTerm.getVector());
}
代码示例来源:origin: us.ihmc/IHMCRoboticsToolkit
public void initialize(FramePoint initialPosition, FramePoint intermediatePosition, FramePoint finalPosition, double intermediateParameter)
{
initialPosition.changeFrame(referenceFrame);
intermediatePosition.changeFrame(referenceFrame);
finalPosition.changeFrame(referenceFrame);
final double q = intermediateParameter;
MathTools.checkIfInRange(q, 0.0, 1.0);
c0.set(initialPosition);
c2.set(intermediatePosition);
c2.sub(initialPosition);
tempInitialize.set(finalPosition);
tempInitialize.sub(initialPosition);
tempInitialize.scale(q);
c2.sub(tempInitialize);
c2.scale(1.0 / (MathTools.square(q) - q));
c1.set(finalPosition);
c1.sub(initialPosition);
c1.sub(c2);
}
这个问题在这里已经有了答案: Converting result of Math.sin(x) into a result for degrees in java (4 个答案) 关闭 5 年前。
我在学习 Kotlin 并在数学课上遇到了这个问题: java.lang.Math 和 kotlin.math 不兼容。这对我来说有点尴尬和困惑,因为 Kotlin 声称它与 Java 100% 兼容
我在其他问题中读到,例如由于浮点表示,sin(2π) 不为零,但非常接近。这个非常小的错误在我的代码中不是问题,因为例如我可以四舍五入 5 位小数。 但是当2π乘以一个非常大的数时,误差就会放大很多。
我正在用 C# 编写一个计算器。 textBoxResult 是我显示数字的文本框 recount 是一个以度为单位的角度并以弧度为单位返回的函数 我从 texBoxInput 获取角度 public
首先,让我们从我的数学背景开始。我已经学习了微积分 I - IV 和微分方程。我参加了第一学期的计算机图形类(class),在该类(class)中我们实现了几乎我们自己的图形管道,包括使用 Phong
早上好! 我只是想磨练我的数学能力,我特别有一些关于 Cocos2D 的问题。由于 Cocos2D 想要“简化”事物,所有 Sprite 都有一个旋转属性,范围从 0-360(359?)CW。这迫使你
是否有人对Intel Math Kernel Library和AMD Math Core Library都有编程经验?我正在建立一台用于高性能统计计算的个人计算机,并对正在购买的组件进行辩论。 AMD
函数的反函数是什么 math.atan2 我在 Lua 中使用它,我可以通过 math.tan 获得 math.atan 的逆。 但我在这里迷路了。 编辑 好的,让我向您提供更多详细信息。 我需要计算
我有一道等轴测投影的数学题。我读了一篇文章:Axonometric projections - a technical overview .对于等距投影部分,它给出了将 x 部分的 3D 点转换为 2
在 MySQL (5.1) 数据库表中,有数据表示: 用户执行任务需要多长时间 用户在任务中处理了多少项目。 MySQL 是否支持关联数据,还是我需要使用 PHP/C# 来计算? 我在哪里可以找到计算
关闭。这个问题是opinion-based 。目前不接受答案。 想要改进这个问题吗?更新问题,以便 editing this post 可以用事实和引文来回答它。 . 已关闭 9 年前。 Improv
我正在尝试使用这两种方法在 C# 中解决这个问题: public double NormalPowerMethod(double x, double toPower) { return Mat
如何分配: var randomNumber = Math.random()*50 + Math.random()*20; 比较: var randomNumber = Math.random()*7
我正在查看我的代码,希望提高它的性能,然后我看到了这个: int sqrt = (int) Math.floor(Math.sqrt(n)); 哦,好的,我真的不需要调用 Math.floor,因为转
尝试调用 math.h 中的函数时, 我收到如下链接错误 undefined reference to sqrt 但我正在做一个 #include 我正在使用 gcc 并编译如下: gcc -Wall
祝大家有个愉快的一天,我有话要问你,为了更好地理解这里是我的代码: {math equation=((($order_total-$commission)+$discount+$delivery_ch
我尝试学习一些Clojure,因为该语言看起来不错。 但是似乎没有关于如何安装/使用库的信息,例如clojure.math.numeric-tower。 现在,我通过在Linux shell中键入以下
As Math.sign() 接受数字参数或数字作为字符串,如 https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Gl
如何将scala.math.BigDecimal转换为java.math.BigDecimal? 最佳答案 无需在字符串之间进行双重转换。 val sb = scala.math.BigDecimal
为什么下面的 JavaScript 会这样 Math instanceof Math 抛出错误 TypeError: Expecting a function in instanceof check,
我是一名优秀的程序员,十分优秀!