- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中us.ihmc.robotics.math.frames.YoFrameVector.length()
方法的一些代码示例,展示了YoFrameVector.length()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YoFrameVector.length()
方法的具体详情如下:
包路径:us.ihmc.robotics.math.frames.YoFrameVector
类名称:YoFrameVector
方法名:length
暂无
代码示例来源:origin: us.ihmc/CommonWalkingControlModules
private double getStepTimeGivenWaypointSpeed(double waypointSpeed, double[] arcLengths)
{
double initialSpeed = allVelocities[0].length();
double finalSpeed = allVelocities[5].length();
return 2 * arcLengths[0] / (initialSpeed + waypointSpeed) + (arcLengths[1] + arcLengths[2] + arcLengths[3]) / waypointSpeed
+ 2 * arcLengths[4] / (waypointSpeed + finalSpeed);
}
代码示例来源:origin: us.ihmc/IHMCRoboticsToolkit
private void computeProportionalTerm(FramePoint desiredPosition)
{
desiredPosition.changeFrame(bodyFrame);
positionError.set(desiredPosition);
// Limit the maximum position error considered for control action
double maximumError = gains.getMaximumProportionalError();
double errorMagnitude = positionError.length();
positionError.getFrameTuple(proportionalTerm);
if (errorMagnitude > maximumError)
{
proportionalTerm.scale(maximumError / errorMagnitude);
}
proportionalGainMatrix.transform(proportionalTerm.getVector());
}
代码示例来源:origin: us.ihmc/IHMCRoboticsToolkit
@Override
public void initialize()
{
currentTime.set(0.0);
initialAngularVelocityMagnitude.set(initialAngularVelocity.length());
finalAngularVelocityMagnitude.set(finalAngularVelocity.length());
maxAngularVelocityMagnitudeAtLimits.set(PI / trajectoryTime.getDoubleValue());
initialDriftSaturated.set(initialAngularVelocityMagnitude.getDoubleValue() > maxAngularVelocityMagnitudeAtLimits.getDoubleValue());
finalDriftSaturated.set(finalAngularVelocityMagnitude.getDoubleValue() > maxAngularVelocityMagnitudeAtLimits.getDoubleValue());
parameterPolynomial.setQuintic(0, trajectoryTime.getDoubleValue(), 0.0, 0.0, 0.0, 1.0, 0.0, 0.0);
if (initialOrientation.dot(finalOrientation) < 0.0)
finalOrientation.negate();
currentOrientation.set(initialOrientation);
currentAngularVelocity.set(initialAngularVelocity);
currentAngularAcceleration.setToZero();
}
代码示例来源:origin: us.ihmc/IHMCRoboticsToolkit
/**
* Computes the new derivative gains to use that reduces the amount of damping in the direction with the most position error.
* This prevents a high desired correcting velocity from being penalized when it deviates from the objective motion.
* @param positionError current position error being used by the feedback control
* @param derivativeGainsToPack derivative gain matrix to use with less damping in the main direction of motion
*/
public void compute(YoFrameVector positionError, Matrix3d derivativeGainsToPack)
{
this.positionError.setIncludingFrame(positionError.getFrameTuple());
if (positionError.length() > tangentialDampingGains.getParallelDampingDeadband())
{
bodyFrameTangentToControl.update();
double alpha = computeDampingReductionRatioParallelToMotion(positionError.length());
transformedGains.setToZero(bodyFrame);
transformedGains.set(derivativeGainsToPack);
transformedGains.changeFrame(bodyFrameTangentToControl);
transformedGains.setElement(0, 0, alpha * transformedGains.getElement(0, 0));
transformedGains.setElement(1, 0, alpha * transformedGains.getElement(1, 0));
transformedGains.setElement(2, 0, alpha * transformedGains.getElement(2, 0));
transformedGains.changeFrame(bodyFrame);
transformedGains.getMatrix(derivativeGainsToPack);
}
}
代码示例来源: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/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/CommonWalkingControlModules
private void setWaypointAndAccelerationEndpointTimesAndVelocities(double[] arcLengths)
{
double waypointSpeed = waypointsAreTheSamePoint ? 0.0 : getWaypointSpeed(arcLengths);
for (int i = 0; i < 2; i++)
{
FrameVector waypointVelocity = getOppositeWaypointToEndpoint(i);
waypointVelocity.normalize();
waypointVelocity.scale(waypointSpeed * ((i == 0) ? -1 : 1));
allVelocities[waypointIndices[i]].set(waypointVelocity);
allVelocities[accelerationEndpointIndices[i]].set(waypointVelocity);
}
if (waypointsAreTheSamePoint)
{
double totalArcLength = getTotalArcLength(arcLengths);
allTimes[1].set((arcLengths[0] + arcLengths[1]) / totalArcLength * stepTime.getDoubleValue());
for (int i = 2; i < 5; i++)
{
allTimes[i].set(allTimes[1].getDoubleValue());
}
}
else
{
allTimes[1].set(2 * arcLengths[0] / (allVelocities[0].length() + waypointSpeed));
allTimes[2].set(allTimes[1].getDoubleValue() + arcLengths[1] / waypointSpeed);
allTimes[3].set(allTimes[2].getDoubleValue() + arcLengths[2] / waypointSpeed);
allTimes[4].set(allTimes[3].getDoubleValue() + arcLengths[3] / waypointSpeed);
}
}
我找到了以下代码片段: length = length and length or len(string) 在我看来,这应该等同于: length = length or len(string) 我能
当我使用 numpy.shape() 检查数组的形状时,我有时会得到 (length,1) 有时会得到 (length,)。看起来区别在于列向量与行向量......但它似乎并没有改变数组本身的任何内容
我正在学习 Java,有一个简单的问题。 在设置类的示例中,我看到了这一点: length >= 0 ? length : length * -1 这是什么意思? 谢谢。 最佳答案 这是一种骇人听闻的
我在阅读有关在 Ruby 中重新定义方法有多么容易的文章时遇到了以下问题: class Array alias :old_length :length def length old_l
例如在下面的代码中a和b和c是相等的。 EditText editText; editText = (EditText) findViewById(R.id.edttxt); editText.set
在昨天教授我的 JavaScript 类(class)时,我和我的学生遇到了一些有趣的功能,我认为这些功能可能值得在一个问题和我得出的答案中捕捉到。 在 Chrome 的 JS 控制台中输入 Arra
这个问题在这里已经有了答案: How can I get the size of an array, a Collection, or a String in Java? (3 个回答) 3年前关闭。
这个问题在这里已经有了答案: length and length() in Java (8 个答案) 关闭 6 年前。 我注意到在计算数组的长度时,你会这样写: arrayone.length; 但
console.log(this.slides.length()); 打印 Cannot read property 'length' of undefined.在 setTimeout 为 100
在搜索stackoverflow问题时,我发现了此链接: Error in file.download when downloading custom file。 但是,我的情况有些不同(我认为):
这个问题已经有答案了: Why does R use partial matching? (1 个回答) 已关闭 8 年前。 大家。我刚刚开始使用 swirl 学习 R 编程。 我刚刚了解到seq 。
这个问题已经有答案了: Why does R use partial matching? (1 个回答) 已关闭 8 年前。 大家。我刚刚开始使用 swirl 学习 R 编程。 我刚刚了解到seq 。
这个问题已经有答案了: How can I get the size of an array, a Collection, or a String in Java? (3 个回答) 已关闭 9 年前。
我有一个大数组,其中包含所有类型( bool 值,数组,null,...),并且我正在尝试访问它们的属性arr[i].length,但有些其中显然没有长度。 我不介意那些缺少长度的人是否返回未定义(我
我在对象的属性中有一些文本。我正在测试对象的属性中是否有要显示的文本;如果没有,那么我显示“-”而不是空白。看起来没有什么区别: if (MyObject.SomeText && MyObject.S
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: Why is String.length() a method? Java - Array's length
这个问题在这里已经有了答案: obj.length === +obj.length in javascript (4 个答案) 关闭 9 年前。 我一直在读underscore.js源代码并在 _.
#include using std::cout; using std::cin; using std::string; int main(){ cout > name; cout
我正在细读 underscore.js annotated source当我遇到这个时: if (obj.length === +obj.length) {...} 我现在从this stackove
我正在查看 dotnet 运行时中的一些代码,我注意到不是这样写的: if (args.Length > 0) 他们使用这个: if (args is { Length: > 0}) 你知道用第二种方
我是一名优秀的程序员,十分优秀!