cantera/interfaces/matlab/toolbox/@Wall/private/wallmethods.m

13 lines
327 B
Matlab

function v = wallmethods(n, job, a, b, c, d)
%
if nargin == 2
v = ctmethods(70, n, job);
elseif nargin == 3
v = ctmethods(70, n, job, a);
elseif nargin == 4
v = ctmethods(70, n, job, a, b);
elseif nargin == 5
v = ctmethods(70, n, job, a, b, c);
elseif nargin == 6
v = ctmethods(70, n, job, a, b, c, d);
end