How to split a vector in many sub-vectors with different sizes ?

2 ビュー (過去 30 日間)
Rachel Sabioni
Rachel Sabioni 2019 年 3 月 20 日
コメント済み: Rachel Sabioni 2019 年 3 月 20 日
Hello,
I have a vector and I want to split it in many subvectors with different sizes.
Example:
A = [1 2 3 4 5 6 7 8 9 10]
sub_1 = [1 2 3]
sub_2 = [4]
sub_3 = [5 6]
sub_4 = [7 8 9 10]
Could you help me with that ?
Thanks in advance,

回答 (1 件)

madhan ravi
madhan ravi 2019 年 3 月 20 日
Sub=mat2cell(A,1,[3,1,2,4]);
Sub{:}

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by