Question about min and max

조회 수: 2 (최근 30일)
ka kei yeung
ka kei yeung 2020년 4월 23일
댓글: ka kei yeung 2020년 4월 23일
How can i find the min and max of the v1[1 2], and v2[3 4] without using the code of min and max
and here's my function code
function [min_max] = minMaxVectors(v1,v2)
Amin = min(v1);
Amax = max(v2);
min_max = [min(v1), max(v2)];
end
i can run by my driver code
v1 = [1 2];
v2 = [3 4];
[min_max] = minMaxVectors(v1,v2);
but how i run this code without using min and max function

채택된 답변

madhan ravi
madhan ravi 2020년 4월 23일
편집: madhan ravi 2020년 4월 23일
google bubblesort and choose which element satisfies your need , hint: ascending and descending
  댓글 수: 1
ka kei yeung
ka kei yeung 2020년 4월 23일
thx for helppppp!!

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by