Info

この質問は閉じられています。 編集または回答するには再度開いてください。

arranging a matrix data

1 回表示 (過去 30 日間)
shailesh khaire
shailesh khaire 2013 年 3 月 28 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
i have matrix A (12x1) as ---
A =
6
5
3
4
8
4
6
7
5
2
3
6
8
9
8
I want to write a code such that matrix Ao will be again (12x1) but its (1st, 4th, 7th , 10th,13th), (2nd, 5th, 8th,11th, 14th) and (3rd, 6th, 9th, 12th, 15 th) will get together. e.g. Ao =
6
4
6
2
8
5
8
7
3
9
3
4
5
6
8

回答 (2 件)

Vishal Rane
Vishal Rane 2013 年 3 月 28 日
There will offcourse be a smarter way to do this, but to get you started:
Ao = [];
Interval = 3;
for i = 1 : Interval
Ao = [Ao ; A(i:Interval:end)];
end
here 3 is the interval you need.

Andrei Bobrov
Andrei Bobrov 2013 年 3 月 28 日
Ao = reshape(reshape(A,3,[])',[],1);

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by