フィルターのクリア

how can I link 4 vectors based on their length? that is from the longest to the shortest

1 回表示 (過去 30 日間)
I.e.
I have a=[5 5 5 5 5], b=[4 4 4 4], c=[3 3 3] and d=[2 2].
I want to concatenate out=[a b c d] without knowing, however, the length of a, b, c, d in each cycle.
Thank you.

採用された回答

Walter Roberson
Walter Roberson 2018 年 4 月 20 日
values = {a, b, c, d};
lens = cellfun(@length, values);
[~, idx] = sort(lens, 'descend');
out = [values{idx}];

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by