Lab9a.m

%{ Lab9a.m This program corresponds to part 1 of Lab 9 This file is the main driver for your program. This is where you put all of the pieces together to make a working program. The program should do the following: (1) Load the data from the text file (2) Call geometric_mean, pass it the loaded data, and store the return value in the variable g_mean (3) Call the root_mean_square function, pass it the loaded data, and store the return value in the variable r_m_s (4) Call the harmonic_mean function, pass it the loaded data, and store the return value in the variable h_mean (5) print the g_mean, r_m_s, and h_mean. Make sure to include context (ie dont just print g_mean, print something like 'geometric mean: <g_mean>' @author Thomas Wilkins %} function [g_mean,r_m_s,h_mean] = Lab9a %your code goes here end