How to return the smallest vector.

If I have N vectors of different length how would i isolate and return the vector of the smallest length? I dont care what the length is i just need which is the smallest one.

 采纳的回答

Matt J
Matt J 2020-1-17
编辑:Matt J 2020-1-17
If you "have them" in cell array form, then you could do something like this:
>> vectors={[3 4 5],[1,2],[5 6 7 8]}
vectors =
1×3 cell array
{1×3 double} {1×2 double} {1×4 double}
>> [~,imin]=min(cellfun('length',vectors));
>> smallest=vectors{imin}
smallest =
1 2

3 个评论

Thank you! I didnt even know cell array existed.
Well, what form were they in? Just separate variables? If so, you need to check their lengths one at a time.
Or, you will have to load them into a cell array manually,
vectors={v1,v2,v3,...}

请先登录,再进行评论。

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 Resizing and Reshaping Matrices 的更多信息

产品

标签

Community Treasure Hunt

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

Start Hunting!

Translated by