フィルターのクリア

How to divide the column data into variable length?

2 ビュー (過去 30 日間)
kitty varghese
kitty varghese 2018 年 11 月 28 日
編集済み: TADA 2018 年 11 月 28 日
I have a column vector of size A=20. I want to divide this column vector into 5 smaller vector of size 5,4,3,6 and 2. Such that a1 is of size 5x1,a2 size=4x1 and so on.

採用された回答

TADA
TADA 2018 年 11 月 28 日
編集済み: TADA 2018 年 11 月 28 日
a = rand(20,1);
c = mat2cell(a, [5,4,3,6,2], 1);
  2 件のコメント
kitty varghese
kitty varghese 2018 年 11 月 28 日
I am getting the following error
Input arguments, D1 through D2, should be vectors.
TADA
TADA 2018 年 11 月 28 日
編集済み: TADA 2018 年 11 月 28 日
yes, I wrote it wrong at first,
should work fine now.

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

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by