values = {a, b, c, d}; lens = cellfun(@length, values); [~, idx] = sort(lens, 'descend'); out = [values{idx}];
how can I link 4 vectors based on their length? that is from the longest to the shortest
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Lotmeri
el 20 de Abr. de 2018
Respondida: Walter Roberson
el 20 de Abr. de 2018
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.
0 comentarios
Respuesta aceptada
Walter Roberson
el 20 de Abr. de 2018
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!