Fix missing parameter docs in Matlab ReactorNet setTolerances. Fix missing semicolon in ThermoPhase display
12 lines
334 B
Matlab
12 lines
334 B
Matlab
function setTolerances(r, rtol, atol)
|
|
% SETTOLERANCES Set the error tolerances.
|
|
% setTolerances(r, rtol, atol)
|
|
% :param r:
|
|
% Instance of class :mat:func:`ReactorNet`
|
|
% :param rtol:
|
|
% Scalar relative error tolerance
|
|
% :param atol:
|
|
% Scalar absolute error tolerance
|
|
%
|
|
|
|
reactornetmethods(7, reactornet_hndl(r), rtol, atol);
|