1) Write a function that will evaluate a factorial for any integer 0 and greater
Do Not use the
built in factorial function in MATLAB, write your own, using some kind of loop. Hints: the
factorial of zero is one and the factorial of any positive integer is that integer multiplied by any
positive integer which is smaller than it.