How do I create a function that interweaves two vectors of 1xN dimensions?

5 ビュー (過去 30 日間)
Jose
Jose 2013 年 1 月 23 日
How do I create a function that interweaves two vectors of 1xN dimensions?

採用された回答

Evgeny Pr
Evgeny Pr 2013 年 1 月 24 日
As one of the ideas:
v1 = [1, 2, 3, 4]
v2 = [5, 6, 7, 8, 9, 10]
lv1 = length(v1)
lv2 = length(v2)
v = zeros(1,max(lv1,lv2)*2)
v(1:2:lv1*2) = v1
v(2:2:lv2*2) = v2
  1 件のコメント
Walter Roberson
Walter Roberson 2013 年 1 月 24 日
This would leave 0s untouched in places where one vector was shorter than the other. Which might be fine or might not be.
Note that in general it would be better to supply class(v1) as the final argument of zeros(), to handle the situation where the vectors were (e.g.) uint8

サインインしてコメントする。

その他の回答 (1 件)

Walter Roberson
Walter Roberson 2013 年 1 月 23 日
V = reshape([V1;V2], 1, []);
  2 件のコメント
Jose
Jose 2013 年 1 月 24 日
That only works for vectors with the same dimensions. How do you account for ones without?
Walter Roberson
Walter Roberson 2013 年 1 月 24 日
Then the two vectors would not be "1xN dimensions" and it would be a different Question -- one would immediately attract questions about what it meant to interweave if the two vectors were not the same size.

サインインしてコメントする。

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by