Matlab resizing a matrix
显示 更早的评论
I have a matrix 8314 x 3 and want to cut it down to 144 x 3 while having the same start and end point.
采纳的回答
更多回答(1 个)
David Hill
2020-10-25
Not sure how you want to select the elements between the first and last.
newMatrix=reshape([yourMatrix(1:58:end),yourMatrix(end)],[144],[]);
类别
在 帮助中心 和 File Exchange 中查找有关 Get Started with MATLAB 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!