take the first and last row of a matrix but sample in between
12 次查看(过去 30 天)
显示 更早的评论
Hi. I have created a 501 x 7 matrix, and would like to downsample the matrix to be 15 x 7. However, I would like the first and last rows to remain the same while sampling in between. Is there an easy way to do this?
I attached the function and have the code below that I am using to get my matrix.
spline_basis_obj = create_bspline_basis(15, 7, 4); % create spline basis set
figure;plot(spline_basis_obj); % plot the object
h = findobj(gca,'Type','line'); % get details on the lines
x=get(h,'Xdata'); % get x values on line (all the same values)
y=get(h,'Ydata'); % get the y values for each line
tempdata = cell2mat(y(4:end))'; % remove the [0,1] terms and make into matrix
spline_basis = % downsample columns to 15 rows here while keeping the first and last rows the same
0 个评论
采纳的回答
the cyclist
2021-1-30
If you have the Statistics and Machine Learning Toolbox, the randsample function is handy for this:
% Original data
A = rand(501,7);
% 13 random integers from 2 to 500 (without replacement)
idx = 1 + randsample(499,13,false);
% Pull these rows from A, and the first and last
B = A([1; sort(idx); end],:);
If you don't, then you can use randi instead of randsample, but you'll need to check for duplicate indices. (You could, for example, generate several more than you need, and just take the first 13 unique ones.)
2 个评论
the cyclist
2021-1-31
OK. I think if you replace idx with
idx = (2:ceil(499/13):500)';
then you'll get what you want.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Splines 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!