Matlab:如何在矩阵上应用逐点函数?
我正在使用 Matlab 来做我的一个项目。我被困在一件基本的事情上。
我有 2 个矩阵 - A 和 B 以及向量 V。我想要做的是:
对于所有 i、j,A(i, j) = V(B(i,j))。
我尝试以最明显的方式做到这一点 - 嵌套循环。由于某种原因,A 没有被填充。我错过了什么吗?有没有更有效的(内置函数)方法来做到这一点。
谢谢,
阿尼尔。
I am using Matlab to do one of my projects. I am stuck at one basic thing.
I have 2 matricies - A and B and a vector V. What I want to do is this:
A(i, j) = V(B(i,j)) for all i, j.
I tried doing this in the most obvious way - nested loops. For some reason, A is not getting populated. Am I missing something? Is there a more efficient (in-built function) way of doing this.
Thanks,
Anil.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果
B
中的所有条目都是大于零的整数,并且B
的最大值不大于V
中的元素数量,则你可以简单地写If all entries in
B
are integers larger than zero, and if the maximum ofB
is not larger than the number of elements inV
, then you can simply write