cantera/interfaces/matlab/toolbox/@Transport/private/trans_get.m

14 lines
364 B
Matlab

function v = trans_get(n, job, a, b, c, d)
% TRANS_GET - get transport attributes
%
if nargin == 2
v = ctmethods(50, n, job);
elseif nargin == 3
v = ctmethods(50, n, job, a);
elseif nargin == 4
v = ctmethods(50, n, job, a, b);
elseif nargin == 5
v = ctmethods(50, n, job, a, b, c);
elseif nargin == 6
v = ctmethods(50, n, job, a, b, c, d);
end