Matlab:如何在矩阵上应用逐点函数?

发布于 2024-10-19 07:21:26 字数 222 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

惟欲睡 2024-10-26 07:21:26

如果B中的所有条目都是大于零的整数,并且B的最大值不大于V中的元素数量,则你可以简单地写

A = V(B);

If all entries in B are integers larger than zero, and if the maximum of B is not larger than the number of elements in V, then you can simply write

A = V(B);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文