- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中us.ihmc.robotics.math.frames.YoFrameVector.add()
方法的一些代码示例,展示了YoFrameVector.add()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YoFrameVector.add()
方法的具体详情如下:
包路径:us.ihmc.robotics.math.frames.YoFrameVector
类名称:YoFrameVector
方法名:add
暂无
代码示例来源:origin: us.ihmc/SensorProcessing
public void corrupt(Tuple3d signal)
{
double std = standardDeviation.getDoubleValue();
double biasUpdateX = std * random.nextGaussian() * squareRootOfUpdateDT;
double biasUpdateY = std * random.nextGaussian() * squareRootOfUpdateDT;
double biasUpdateZ = std * random.nextGaussian() * squareRootOfUpdateDT;
biasYoFrameVector.add(biasUpdateX, biasUpdateY, biasUpdateZ);
biasYoFrameVector.get(biasVector);
signal.add(biasVector);
}
代码示例来源:origin: us.ihmc/IHMCStateEstimation
public void correctIMULinearVelocity(FrameVector rootJointVelocity)
{
rootJointLinearVelocity.set(rootJointVelocity);
yoMeasurementFrameLinearVelocityInWorld.set(rootJointVelocity);
yoMeasurementFrameLinearVelocityInWorld.add(correctionVelocityForMeasurementFrameOffset);
}
代码示例来源:origin: us.ihmc/IHMCStateEstimation
public void updatePelvisPosition(FramePoint rootJointPositionPrevValue, FramePoint rootJointPositionToPack)
{
if (!isEstimationEnabled())
throw new RuntimeException("IMU estimation module for pelvis linear velocity is disabled.");
rootJointLinearVelocity.getFrameTupleIncludingFrame(tempRootJointVelocityIntegrated);
tempRootJointVelocityIntegrated.scale(estimatorDT);
if(setRootJointPositionImuOnlyToCurrent.getBooleanValue())
{
rootJointPositionImuOnly.set(rootJointPositionPrevValue);
setRootJointPositionImuOnlyToCurrent.set(false);
}
rootJointPositionImuOnly.add(tempRootJointVelocityIntegrated);
rootJointPosition.set(rootJointPositionPrevValue);
rootJointPosition.add(tempRootJointVelocityIntegrated);
rootJointPosition.getFrameTupleIncludingFrame(rootJointPositionToPack);
}
代码示例来源:origin: us.ihmc/IHMCStateEstimation
private void computeTotalGroundReactionForce()
{
totalGroundReactionForce.setToZero();
for (int i = 0; i < feet.size(); i++)
{
RigidBody foot = feet.get(i);
Wrench footWrench = footWrenches.get(foot);
footSwitches.get(foot).computeAndPackFootWrench(footWrench);
footWrench.getLinearPartIncludingFrame(tempFootForce);
tempFootForce.changeFrame(worldFrame);
totalGroundReactionForce.add(tempFootForce);
}
totalGroundReactionForce.getFrameTuple(tempCoMAcceleration);
comAcceleration.set(tempCoMAcceleration);
comAcceleration.setZ(comAcceleration.getZ() - robotMass.getDoubleValue() * gravitationalAcceleration);
}
代码示例来源: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/SensorProcessing
public void update(Wrench sensorWrench)
{
sensorWrench.changeFrame(world);
yoSensorForce.set(sensorWrench.getExpressedInFrame(), sensorWrench.getLinearPartX(), sensorWrench.getLinearPartY(), sensorWrench.getLinearPartZ());
yoSensorTorque.set(sensorWrench.getExpressedInFrame(), sensorWrench.getAngularPartX(), sensorWrench.getAngularPartY(), sensorWrench.getAngularPartZ());
if (addSimulatedSensorNoise.getBooleanValue())
{
double amp = 0.1;
double bias = 0.25;
yoSensorForce.add(amp*2.0*(Math.random()-0.5)+bias, amp*2.0*(Math.random()-0.5)+bias, amp*2.0*(Math.random()-0.5)+bias);
yoSensorTorque.add(amp*2.0*(Math.random()-0.5)+bias, amp*2.0*(Math.random()-0.5)+bias, amp*2.0*(Math.random()-0.5)+bias);
}
updateSensorPosition();
updateCenterOfMass();
yoSensorToDistalCoMvectorInWorld.sub(distalCoMInWorld, yoSensorPositionInWorld);
distalMassWrench.setToZero(world);
distalMassWrench.setUsingArm(world, distalMassForceInWorld.getFrameTuple().getVector(), yoSensorToDistalCoMvectorInWorld.getFrameTuple().getVector());
yoSensorForceFromDistalMass.set(distalMassWrench.getExpressedInFrame(), distalMassWrench.getLinearPartX(), distalMassWrench.getLinearPartY(), distalMassWrench.getLinearPartZ());
yoSensorTorqueFromDistalMass.set(distalMassWrench.getExpressedInFrame(), distalMassWrench.getAngularPartX(), distalMassWrench.getAngularPartY(), distalMassWrench.getAngularPartZ());
yoSensorForceMassCompensated.sub(yoSensorForce, yoSensorForceFromDistalMass);
yoSensorTorqueMassCompensated.sub(yoSensorTorque, yoSensorTorqueFromDistalMass);
}
代码示例来源: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
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/IHMCStateEstimation
yoCenterOfMassVelocityIntegrateGRF.add(comAcceleration);
yoCenterOfMassVelocity.add(comVelocityGRFPart, comVelocityPelvisAndKinPart);
代码示例来源:origin: us.ihmc/CommonWalkingControlModules
desiredPelvisAngularVelocity.add(tempAngularVelocity);
desiredPelvisAngularAcceleration.add(tempAngularAcceleration);
代码示例来源:origin: us.ihmc/IHMCRoboticsToolkit
controlAngularVelocities[2].add(tempAngularVelocity);
I have a question about adding files in git. I have found multiple stackoverflow questions about
我是 visual studio 的新手,来自 Delphi。 我有一个充满 .cs 文件的目录树(根是\Common)。 我还有一个充满应用程序的目录树(根目录是\Applications) 最后,
这个问题在这里已经有了答案: Array's lookup time complexity vs. how it is stored (4 个答案) Time complexity for java
谁能告诉我这两者有什么区别: ALTER TABLE x1 ADD INDEX(a); ALTER TABLE x1 ADD INDEX(b); 和 ALTER TABLE x1 ADD INDEX(
为什么有时我们使用 getChildren() add() 而其他时候我们直接使用 add() es: https://docs.oracle.com/javafx/2/get_started/for
如何使用 bootstrap css 在输入下方添加跨度?我需要做这样的事情: 最佳答案 是这样的吗? http://jsfiddle.net/swm53ran/205/ 您可以使用纯 CSS 来实现
问题 np.add(X, 2*Y, out=X) 比 np.add(X, Y, out=X); np.add(X, Y, out=X).使用 np.add(X, Y, out=X); 是一种实际做法吗
当我跑 git add --intent-to-add .所有未跟踪的文件将其状态从“未跟踪的文件”( git status -s 显示 ?? )更改为“未暂存以进行提交的更改”( git statu
我不知道 .add 之间有什么区别和 .sink.add ? 例子: StreamController myStreamController = StreamController(); stream
getContentPane().add() 和 add() 的意思一样吗? public class TestFrame extends JFrame{ public TestFrame()
git add . 和 git add * 会完成完全相同的事情吗? 最佳答案 不,不会。 * 是一个 glob 模式,不会匹配以 开头的文件。 例如,假设这是当前目录,我有 2 个新文件要添加 fo
git的分支与合并的两种方法 git add -A和 git add . git add -u在功能上看似很相近,但还是存在一点差别 git add . :他会
git add [--all | -A] 之间有什么区别?和 git add . ? 最佳答案 此答案仅适用于 Git 版本 1.x。对于 Git 版本 2.x,请参阅其他答案。 总结: git ad
我刚刚安装了最新的 Wix v3.7。我创建了一个 VS 2010“Excel 2010 加载项”项目,并在同一个解决方案中创建了一个 Wix“安装项目”。 问题是,当我尝试从 Wix 项目中引用 A
YUI.add 和 YUI().add 有什么区别? 最佳答案 在第一种情况下,您要注册一个模块可以加载到 YUI 沙箱中,在第二种情况下,您要构建一个沙箱,然后进行注册(这是一种非常不典型的用法)。
测试代码时,任何输入到列表中的值在按下“enter”后都会消失。 我对编程和网络开发非常陌生。请具体一点,以便我理解。 function addItem(){ var item = documen
我正在浏览 python 的 dis 包。我尝试了代码以查看它是如何工作的 >>> def get(): ... x=4 ... y=x+3 ............ this lin
我已经对我的文件夹进行了版本控制 git init git add . git commit -m 'Initial commit' 我应该怎么做 git add 对于我在 .? 中创建的每个新文件
当我执行 $ git add * 时,有时我意识到 git 不会将已删除的文件添加到舞台上,如果删除或添加它,我需要手动指示,但我想不通找出 $ git add --all 有什么区别。因此,如果星号
这个问题在这里已经有了答案: Difference between "git add -A" and "git add ." (12 个答案) 关闭 6 年前。 目前,当我想提交并将内容推送到远程
我是一名优秀的程序员,十分优秀!