Geometric Mean. The geometric mean of a set of numbers $x_{1}$ through $x_{n}$ is defined as the $n$th root of the product of the numbers
$$
\text { geometric mean }=\sqrt[4]{x_{1} x_{2} x_{3} \ldots x_{n}}
$$
Write a MATLAB program that will accept an arbitrary number of positive input values and calculate both the arithmetic mean (i.e., the average) and the geometric mean of the numbers. Use a while loop to get the input values and terminate the inputs when a user enters a negative number. Test your program by calculating the average and geometric mean of the four numbers $10,5,2$, and 5 .