extract the same coloumn from multiple mtrix
显示 更早的评论
Hi! I'm new here i want to ask if there is a solution in Matlab to extract the same column number from multiple matrix. I have 640 matrix and I want to extract from each mtrix the column indexed 70 and save this column in one new matrix .I thank you in advance for your help
采纳的回答
更多回答(2 个)
Razvan
2012-10-19
To extract column 70 from matrix M you do
C = M(:,70);
To add this column to another matrix (M2) you do
M2 = [M2, C];
3 个评论
sami
2012-10-19
Azzi Abdelmalek
2012-10-19
编辑:Azzi Abdelmalek
2012-10-19
how are named your 640 matrix? , or do you import them each iteration
sami
2012-10-19
Azzi Abdelmalek
2012-10-19
编辑:Azzi Abdelmalek
2012-10-19
M=[]
for k=1:8
s=['M=[M' sprintf([',device%d_%d(:,70)'],[k*ones(1,80);(1:80)]) ']']
eval(s)
end
类别
在 帮助中心 和 File Exchange 中查找有关 Matrix Indexing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!