How can I solve matrix selection extraction
1 次查看(过去 30 天)
显示 更早的评论
Hello, I am a college student studying MATLAB.
I want to select columns 1-101, columns 103-203, 205-305, and columns 307-407 among the attached 309×816 matrices and make them into one matrix.
How can i solve it. Please let me know.
thank you
回答(3 个)
Chunru
2022-6-28
load C.mat
% select columns 1-101, columns 103-203, 205-305, and columns 307-407
% and make them into one matrix.
WhatYouWant = C(:, [1:101 103:203 205:305 307:407]);
% The : means all rows; [....] means the selected columns
whos
0 个评论
AMIT POTE
2022-6-28
You can go through the following documentation to understand indexing in MATLAB
0 个评论
Neeraj Mirji
2022-6-28
The following code extracts the mentioned columns into newMatrix.
newMatrix = C(: , [1:101 103:203 205:305 307:407]);
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!