% 5.1 Write a function called myMin4 that takes in four numbers and % returns the minimum. You may not use the built-in min() function. clear clc % Examples: myMin4(1,3,5,7) %-> 1 myMin4(8,9,3,4) %-> 3