Lab
%Calculate the root mean square %do not use the prod or sum built-ins %Do not use the rms MATLAB built-in %Make sure to store the result in the r_m_s variable % @param data - a vector of values used to calculate the root mean square % @author Thomas Wilkins function r_m_s = root_mean_square(data) %your code goes here end