MATLAB 中的矢量化
我正在尝试创建一个大小为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从你的问题来看,每一行看起来都是一样的。因此,您可以使用 REPMAT 计算一行,
如果您愿意的 话让
e
在第 1 行中为 1,在第 2 行中为 2,依此类推,您可以使用 NDGRID 创建两个与输出大小相同的数组,其中包含每个元素e
和i
的值>(i,j) 输出,或者您可以使用 BSXFUN< /a> 为您进行
e
和i
的扩展From your question, it looks like each row is the same. Thus, you can just calculate one row using REPMAT as
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 ofe
andi
for every element(i,j)
of the outputor you can use BSXFUN to do the expansion of
e
andi
for you