How to return the smallest vector.

조회 수: 17 (최근 30일)
jg
jg 2020년 1월 17일
댓글: Matt J 2020년 1월 17일
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
Image Analyst
Image Analyst 2020년 1월 17일
Well, what form were they in? Just separate variables? If so, you need to check their lengths one at a time.
Matt J
Matt J 2020년 1월 17일
Or, you will have to load them into a cell array manually,
vectors={v1,v2,v3,...}

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by