在matlab中绕y轴旋转3D点
我已经获得了一个可以使用的旋转矩阵:
并已将矩阵输入到我的函数中,
theta = radians(theta);
Ry(theta) = [cos(theta) 0 sin(theta); 0 1 0; -sin(theta) 0 cos(theta)];
newpose = pos*Ry(theta);
只要函数达到这个阶段它返回错误
???下标索引必须是实数正整数或 逻辑。
非常感谢任何帮助
I have been provided with a rotation matrix to use:
and have entered the matrix into my function as
theta = radians(theta);
Ry(theta) = [cos(theta) 0 sin(theta); 0 1 0; -sin(theta) 0 cos(theta)];
newpose = pos*Ry(theta);
yet whenever the function reaches this stage it returns the error
??? Subscript indices must either be real positive integers or
logicals.
any help much appreciated
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
问题在于
Ry(theta)
。如果您希望它是一个变量,请将其命名为Ry_theta
,或者将其放入实际的函数中。这应该有效:或者 - 如果您想要一个更可重用的解决方案:
The problem is the
Ry(theta)
. Call it something likeRy_theta
if you want it to be a variable, or put it in an actual function. This should work:Or - if you want a more reusable solution:
theta 很可能不是实数正整数或逻辑数。
theta is most likely not a real positive integer or a logical.