How to divide a vector into small groups

I have a vector X of size 30 by 1 and I need to divide/group the elements (say the first two forms the first group third and fourth the second group and so on). Now I need to specifically check to which group a particular number (which is an element of X) belongs to and would like to get the index of that number (index when the number belongs to X, say for eg, it was the 15th number in X). Could anyone please help me sort this out.

 采纳的回答

x=randi(100,30,1);
X=reshape(x,2,[]);
[~,idxGroup]=find(X==x(15));

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 Matrix Indexing 的更多信息

产品

版本

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by