Write a function named myFunction(a,b) which accepts two different input arguments a and b and returns the bigger one of the two. Please use MATLAB. a) function myFunction(a, b) { if a > b { return a; } else { return b; } } b) function myFunction(a, b) { if a < b { return a; } else { return b; } }
c) function myFunction(a, b) { if a > b { return b; } else { return a; } }
d) function myFunction(a, b) { if a < b { return b; } else { return a; } }