reshape vector to matrix

1 回表示 (過去 30 日間)
Anurag Gupta
Anurag Gupta 2020 年 10 月 25 日
コメント済み: Anurag Gupta 2020 年 10 月 27 日
I want to convert
d = [1 2 3 4 5]
to d = [1 2
2 3
3 4
4 5]
is there anyway I can do it.

採用された回答

Stephen23
Stephen23 2020 年 10 月 25 日
A general solution for an arbitrary number of rows and columns:
>> d = [1,2,3,4,5];
>> r = 4;
>> m = hankel(d(1:4),d(r:end))
m =
1 2
2 3
3 4
4 5
  1 件のコメント
Anurag Gupta
Anurag Gupta 2020 年 10 月 27 日
Thanks a lot Stephen.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by