9. Write a function my_split_function(f,g, a,b,x), where fand g are handles to functions f(x) and g(x), respectively. Th
Posted: Wed Mar 30, 2022 9:29 am
9. Write a function my_split_function(f,g, a,b,x), where fand g are handles to functions f(x) and g(x), respectively. The output should be f(x) if x < a, g(x) if x > b, and 0 otherwise. You may assume that b> a.