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