extract a number N of equally spaced rows within a matrix

6 次查看(过去 30 天)
HI! I have a number N and a matrix with 100 rows and 2 columns.
How can I recover N rows of the matrix so that they are as equidistant from each other as possible?
For example:
  • with N = 10 I will have 10 rows (row 1, 11, 21, 31,...)
  • with N = 7 I will have 7 rows (row 1, 15, 29,...) In this case the steps are like 100/7 = 14.28 = 14.
a=1:1:100;
a=a';
b=0.1:0.1:10;
b=b';
M=[a,b]; % example matrix
N=10; % number of rows
step = height(M)/N;
step = 14; % round down
v = 1:step:height(M);
M_new = M(v,:);

采纳的回答

Fangjun Jiang
Fangjun Jiang 2023-9-22
编辑:Fangjun Jiang 2023-9-22
M=repmat((1:100)',1,2);
N=7;
d=M(round(linspace(1,height(M),N)),:)
d = 7×2
1 1 18 18 34 34 51 51 67 67 84 84 100 100

更多回答(1 个)

Dyuman Joshi
Dyuman Joshi 2023-9-22
编辑:Dyuman Joshi 2023-9-22
You are on the right course -
a=(1:1:100)';
b=(0.1:0.1:10)';
M=[a,b]; % example matrix
N=7; % number of rows
step = height(M)/N
step = 14.2857
%Use floor to round down to nearest integer less than or equal to step
step = floor(step) % round down
step = 14
v = 1:step:height(M)
v = 1×8
1 15 29 43 57 71 85 99
M_new = M(v,:)
M_new = 8×2
1.0000 0.1000 15.0000 1.5000 29.0000 2.9000 43.0000 4.3000 57.0000 5.7000 71.0000 7.1000 85.0000 8.5000 99.0000 9.9000
  8 个评论
Dyuman Joshi
Dyuman Joshi 2023-9-24
编辑:Dyuman Joshi 2023-9-24
"when height(M) is 100 and N is 10, it is hard to say which one is the right answer."
OP has specified what the expected outcome is and the logic behind it -
HI! I have a number N and a matrix with 100 rows and 2 columns.
How can I recover N rows of the matrix so that they are as equidistant from each other as possible?
For example:
  • with N = 10 I will have 10 rows (row 1, 11, 21, 31,...)
  • with N = 7 I will have 7 rows (row 1, 15, 29,...) In this case the steps are like 100/7 = 14.28 = 14.
Alberto Acri
Alberto Acri 2023-9-24
Thanks for the replies!
@Fangjun Jiang Yes, it is actually impossible to make an "equally spaced" distribution for any value of N but your case is more useful for my purpose.
@Dyuman Joshi Your solution is certainly fine too. I gave an example to make it clear what I wanted to achieve as a final result. The distribution as you wrote it follows exactly what I wanted to obtain as a result in the question. But it was an example. You'll accept both as an answer but that's not possible.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Shifting and Sorting Matrices 的更多信息

产品


版本

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by