Program Listing for File LobattoIIICS2.m¶
↰ Return to documentation for file (+Indigo/+Tableau/LobattoIIICS2.m
)
%
%> Class container for Lobatto IIIC$^\star$ method.
%
classdef LobattoIIICS2 < Indigo.RungeKutta
%
methods
%
% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
%
%> Lobatto IIIC$^\star$ method.
%>
%> \f[
%> \begin{array}{c|cc}
%> 0 & 0 & 0 \\
%> 1 & 1 & 0 \\
%> \hline
%> & 1/2 & 1/2
%> \end{array}
%> \f]
%
function this = LobattoIIICS2()
tbl.A = [0, 0; 1, 0];
tbl.b = [1/2, 1/2];
tbl.b_e = [];
tbl.c = [0, 1]';
this@Indigo.RungeKutta('LobattoIIICS2', 2, tbl);
end
%
% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
%
end
%
end