MATLAB: Duplicate each element of a vector? [closed]

我是研究僧i 提交于 2019-11-26 23:34:30

问题


I'm new to MATLAB and this website as well. I tried searching for this question, but to no avail (so I apologize if this ends up being a questions which has already been asked here before). In class, we were assigned a problem with the following description: "For an n-dimensional vector X, the function should return another 2n-dimension where each element is repeated twice. For example: if a=[2 3 4 5], after using the function, a=[2 2 3 3 4 4 5 5];" It should work with a vector of ANY random size.

Your help is really appreciated! Thanks


回答1:


use kron:

K = kron(X,Y) returns the Kronecker tensor product of X and Y. The result is a large array formed by taking all possible products between the elements of X and those of Y. If X is m-by-n and Y is p-by-q, then kron(X,Y) is m*p-by-n*q.

In your case:

kron(a,[1 1])

will give you what you wanted

Some alternatives answers for your question:

reshape([a ; a],1,[])

reshape([a'*[1 1]]',1,[])


来源:https://stackoverflow.com/questions/17509090/matlab-duplicate-each-element-of-a-vector

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!