使用滑动窗口函数处理向量的 MATLAB 函数,返回向量响应矩阵
假设向量 v
的大小为 1 x n
,函数 fun
接受长度为 L
的向量并返回向量大小 px 1
。
是否有一个 MATLAB 函数可以接受向量 v
,使用函数 fun 处理长度为 L
的每个滑动窗口,并返回大小为 px n
的矩阵代码>(或<代码>px(nL))。
我知道这可以通过使用 im2col
创建窗口向量矩阵并处理每个向量来实现,但这对于长向量 v
来说需要太多内存。
Assuming vector v
of size 1 x n
and function fun
that takes in a vector of length L
and returns a vector of size p x 1
.
Is there a MATLAB function that would take in vector v
, process each sliding window of length L
with function fun, and return a matrix of size p x n
(or p x (n-L)
).
I am aware this could be achieved with creating a matrix of windowed vectors with im2col
and processing each of those, but this takes too much memory for a long vector v
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我在这里所做的是定义一个匿名函数,对于固定的
v
和l
以及起始索引参数 (is
),获取各自的v
的切片并对它应用fun
。然后,通过 arrayfun 将该函数应用于该起始索引的所有有用值。由于我自己目前无法说出的原因,每个应用程序都会返回一个
px 1
向量,但arrayfun
无法将其排列成正确的矩阵,因此 UniformOutput=false 设置和围绕它的cell2mat
调用。编辑:为了使用将 1×5 向量转换为 4×1 向量的函数进行测试,我使用了
并得到了这个结果:
再次注意,在
funsl
v
是固定的,要将此方法应用于不同的v
,您可以创建另一个采用v
(和l,如果您不想修复此问题)作为参数,包含上面两行并返回第二行的结果。
What I did here is define an anonymous function that, for a fixed
v
andl
and a starting index parameter (is
), gets the respective slice ofv
and appliesfun
to it.Then this function is applied, via
arrayfun
, to all useful values for this starting index. For reasons I myself cannot quite name at the moment, each application returns ap x 1
vector, butarrayfun
cannot arrange it into a proper matrix, thus the UniformOutput=false setting and thecell2mat
call around it.Edit: To test this with a function that turns 1-by-5 vectors into 4-by-1 vectors I used
and got this result:
Note again that in the definition of
funsl
v
is fixed, To apply this approach to differentv
you could make another function that takesv
(andl
, if you do not want to fix this) as parameter(s), contains the two lines above and returns the result of the second one.其他帖子中的相同解决方案也适用(有些修改):
The same solution from this other post could apply (with some modifications):