MATLAB 中的矢量化

发布于 2024-10-20 02:08:00 字数 206 浏览 1 评论 0原文

我正在尝试创建一个大小为 121x101 的向量,使得第 i 列由 V_t*e 组成,其中 V_t = 1000*10^((i-1)/20)e 是一个 121 长的列。

显然,i 的范围是从 1 到 1.01 亿,但是我如何将其应用于矩阵而不只产生结果中的最终值(将其应用于每一列而不重复命令)?

I'm trying to create a vector of size 121x101 such that the ith column is made up of V_t*e, where V_t = 1000*10^((i-1)/20) and e is a 121 long column of ones.

Clearly i is to be varied from 1 to 101 million, but how would I apply that to a matrix without only yielding the final value in the results (applying this to every column without repeating commands)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

月光色 2024-10-27 02:08:00

从你的问题来看,每一行看起来都是一样的。因此,您可以使用 REPMAT 计算一行,

iRow = 1:101;
V_t = 1000*10.^((iRow-1)/20);
V_te = repmat(V_t,121,1);

如果您愿意的 话让 e 在第 1 行中为 1,在第 2 行中为 2,依此类推,您可以使用 NDGRID 创建两个与输出大小相同的数组,其中包含每个元素 ei 的值>(i,j) 输出

[ee,ii] = ndgrid(1:121,1:101);
V_te = 1000*10.^((i-1)/20) .* ee;

,或者您可以使用 BSXFUN< /a> 为您进行 ei 的扩展

iRow = 1:101;
V_t = 1000*10.^((iRow-1)/20);
V_te = bsxfun(@times,V_t,(1:121)');

From your question, it looks like each row is the same. Thus, you can just calculate one row using REPMAT as

iRow = 1:101;
V_t = 1000*10.^((iRow-1)/20);
V_te = repmat(V_t,121,1);

If you want to have e be 1 in row 1, 2 in row 2, etc, you can use NDGRID to create two arrays of the same size as the output, which contain the values of e and i for every element (i,j) of the output

[ee,ii] = ndgrid(1:121,1:101);
V_te = 1000*10.^((i-1)/20) .* ee;

or you can use BSXFUN to do the expansion of e and i for you

iRow = 1:101;
V_t = 1000*10.^((iRow-1)/20);
V_te = bsxfun(@times,V_t,(1:121)');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文