Question about min and max

11 ビュー (過去 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 件)

Community Treasure Hunt

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

Start Hunting!

Translated by