function m = ep_chl_morel(e) % EP_CHL_MOREL - Calculate Morel's chl from different K(lambda) % % This is not a production function, its meant to be changed and used % for debugging % % Brian Schlining % 10 Aug 1999 ep_ini ep = 1; Depth = 24; % Depth in meters i = strmatch('K412',ColumnS); m = ((e(ep).dat(:,i) - 0.0196)./.1125).^(1/0.680); i = strmatch('K443',ColumnS); m(:,2) = ((e(ep).dat(:,i) - 0.0166)./.0996).^(1/0.704); i = strmatch('K490',ColumnS); m(:,3) = ((e(ep).dat(:,i) - 0.0217)./.0690).^(1/0.702); i = strmatch('K510',ColumnS); m(:,4) = ((e(ep).dat(:,i) - 0.0384)./.0578).^(1/0.690); i = strmatch('K555',ColumnS); m(:,5) = ((e(ep).dat(:,i) - 0.0683)./.0400).^(1/0.645); i = strmatch('K670',ColumnS); m(:,6) = ((e(ep).dat(:,i) - 0.4300)./.0515).^(1/0.695);