10 lines
251 B
Matlab
10 lines
251 B
Matlab
function wtm = meanMolecularWeight(tp)
|
|
% MEANMOLECULARWEIGHT - Mean molecular weight.
|
|
%
|
|
% This method is a synonym for method meanMolarMass and is
|
|
% provided for backward compatibility.
|
|
%
|
|
% See also; meanMolarMass
|
|
%
|
|
|
|
wtm = meanMolarMass(tp);
|