Skip to content

Commit

Permalink
Added additional solver dedicated to matrix-valued ODEs, minor fixes,…
Browse files Browse the repository at this point in the history
… updated documentation
  • Loading branch information
tamaskis committed Aug 29, 2022
1 parent 979ef83 commit 9c9dec8
Show file tree
Hide file tree
Showing 621 changed files with 217 additions and 470 deletions.
18 changes: 14 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,20 @@ doc_IVP tech
`[t,y] = solve_ivp(__,method,wb)`


## Tools for Matrix-Valued IVPs
`ivpIC_mat2vec`\
`ivpsol_vec2mat`\
`odefun_mat2vec`
## Matrix-Valued IVP Solver Function

`[t,M] = solve_ivp_matrix(F,[t0,tf],M0,h)`\
`[t,M] = solve_ivp_matrix(F,{t0,C},M0,h)`\
`[t,M] = solve_ivp_matrix(__,p,method)`\
`[t,M] = solve_ivp_matrix(__,p,method,wb)`


## Utilities for IVP Solvers
`expand_ivp_arrays`\
`mat2vec_fun`\
`mat2vec_IC`\
`mat2vec_C`\
`vec2mat_sol`


## Explicit Runge-Kutta (Single-Step) Methods
Expand Down
Binary file not shown.
6 changes: 2 additions & 4 deletions docs/AB2_doc.html
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@



</style></head><body><div class="content"><h1><tt>AB2</tt></h1><!--introduction--><p>Propagates the state vector forward one time step using the Adams-Bashforth 2nd-order method.</p><p><a href="index.html">Back to IVP Solver Toolbox Contents</a>.</p><!--/introduction--><h2>Contents</h2><div><ul><li><a href="#1">Syntax</a></li><li><a href="#2">Description</a></li><li><a href="#3">Input/Output Parameters</a></li><li><a href="#4">Note</a></li><li><a href="#5">See also</a></li></ul></div><h2 id="1">Syntax</h2><pre class="language-matlab">F = AB2(f,t,F,h)
</style></head><body><div class="content"><h1><tt>AB2</tt></h1><!--introduction--><p>Propagates the state vector forward one time step using the Adams-Bashforth 2nd-order method.</p><p><a href="index.html">Back to IVP Solver Toolbox Contents</a>.</p><!--/introduction--><h2>Contents</h2><div><ul><li><a href="#1">Syntax</a></li><li><a href="#2">Description</a></li><li><a href="#3">Input/Output Parameters</a></li><li><a href="#4">See also</a></li></ul></div><h2 id="1">Syntax</h2><pre class="language-matlab">F = AB2(f,t,F,h)
</pre><h2 id="2">Description</h2><p><tt>F = AB2(f,t,y,h)</tt> updates the <img src="AB2_doc_eq03148538246847756930.png" alt="$\mathbf{F}$" style="width:8px;height:8px;"> matrix, <tt>F</tt>, for the next sample time, given the <img src="AB2_doc_eq03148538246847756930.png" alt="$\mathbf{F}$" style="width:8px;height:8px;"> matrix at the current time <tt>t</tt>, the function <tt>f(t,y)</tt> defining the ODE <img src="AB2_doc_eq11546780198861005830.png" alt="$d\mathbf{y}/dt=\mathbf{f}(t,\mathbf{y})$" style="width:71px;height:11px;">, and the step size <tt>h</tt>.</p><h2 id="3">Input/Output Parameters</h2><p>
<table border=1>
<tr>
Expand Down Expand Up @@ -114,7 +114,7 @@
<td style="text-align:center">p×3<BR>double</td>
</tr>
</table>
</p><h2 id="4">Note</h2><div><ul><li><img src="AB2_doc_eq06235627993914477729.png" alt="$p=$" style="width:17px;height:8px;"> dimension of state vector (for the scalar case, <img src="AB2_doc_eq14406891124849479077.png" alt="$p=1$" style="width:25px;height:10px;">).</li></ul></div><h2 id="5">See also</h2><p><a href="AB3_doc.html"><tt>AB3</tt></a> | <a href="AB4_doc.html"><tt>AB4</tt></a> | <a href="AB5_doc.html"><tt>AB5</tt></a> | <a href="AB6_doc.html"><tt>AB6</tt></a> | <a href="AB7_doc.html"><tt>AB7</tt></a> | <a href="AB8_doc.html"><tt>AB8</tt></a></p><p class="footer"><br><a href="https://www.mathworks.com/products/matlab/">Published with MATLAB&reg; R2022a</a><br></p></div><!--
</p><h2 id="4">See also</h2><p><a href="AB3_doc.html"><tt>AB3</tt></a> | <a href="AB4_doc.html"><tt>AB4</tt></a> | <a href="AB5_doc.html"><tt>AB5</tt></a> | <a href="AB6_doc.html"><tt>AB6</tt></a> | <a href="AB7_doc.html"><tt>AB7</tt></a> | <a href="AB8_doc.html"><tt>AB8</tt></a></p><p class="footer"><br><a href="https://www.mathworks.com/products/matlab/">Published with MATLAB&reg; R2022a</a><br></p></div><!--
##### SOURCE BEGIN #####
%% |AB2|
% Propagates the state vector forward one time step using the
Expand Down Expand Up @@ -176,8 +176,6 @@
% </tr>
% </table>
% </html>
%% Note
% * $p=$ dimension of state vector (for the scalar case, $p=1$).
%% See also
% <AB3_doc.html |AB3|> |
% <AB4_doc.html |AB4|> |
Expand Down
Binary file modified docs/AB2_doc_eq03148538246847756930.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed docs/AB2_doc_eq06235627993914477729.png
Binary file not shown.
Binary file modified docs/AB2_doc_eq11546780198861005830.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed docs/AB2_doc_eq14406891124849479077.png
Binary file not shown.
6 changes: 2 additions & 4 deletions docs/AB3_doc.html
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@



</style></head><body><div class="content"><h1><tt>AB3</tt></h1><!--introduction--><p>Propagates the state vector forward one time step using the Adams-Bashforth 3rd-order method.</p><p><a href="index.html">Back to IVP Solver Toolbox Contents</a>.</p><!--/introduction--><h2>Contents</h2><div><ul><li><a href="#1">Syntax</a></li><li><a href="#2">Description</a></li><li><a href="#3">Input/Output Parameters</a></li><li><a href="#4">Note</a></li><li><a href="#5">See also</a></li></ul></div><h2 id="1">Syntax</h2><pre class="language-matlab">F = AB3(f,t,F,h)
</style></head><body><div class="content"><h1><tt>AB3</tt></h1><!--introduction--><p>Propagates the state vector forward one time step using the Adams-Bashforth 3rd-order method.</p><p><a href="index.html">Back to IVP Solver Toolbox Contents</a>.</p><!--/introduction--><h2>Contents</h2><div><ul><li><a href="#1">Syntax</a></li><li><a href="#2">Description</a></li><li><a href="#3">Input/Output Parameters</a></li><li><a href="#4">See also</a></li></ul></div><h2 id="1">Syntax</h2><pre class="language-matlab">F = AB3(f,t,F,h)
</pre><h2 id="2">Description</h2><p><tt>F = AB3(f,t,y,h)</tt> updates the <img src="AB3_doc_eq03148538246847756930.png" alt="$\mathbf{F}$" style="width:8px;height:8px;"> matrix, <tt>F</tt>, for the next sample time, given the <img src="AB3_doc_eq03148538246847756930.png" alt="$\mathbf{F}$" style="width:8px;height:8px;"> matrix at the current time <tt>t</tt>, the function <tt>f(t,y)</tt> defining the ODE <img src="AB3_doc_eq11546780198861005830.png" alt="$d\mathbf{y}/dt=\mathbf{f}(t,\mathbf{y})$" style="width:71px;height:11px;">, and the step size <tt>h</tt>.</p><h2 id="3">Input/Output Parameters</h2><p>
<table border=1>
<tr>
Expand Down Expand Up @@ -114,7 +114,7 @@
<td style="text-align:center">p×4<BR>double</td>
</tr>
</table>
</p><h2 id="4">Note</h2><div><ul><li><img src="AB3_doc_eq06235627993914477729.png" alt="$p=$" style="width:17px;height:8px;"> dimension of state vector (for the scalar case, <img src="AB3_doc_eq14406891124849479077.png" alt="$p=1$" style="width:25px;height:10px;">).</li></ul></div><h2 id="5">See also</h2><p><a href="AB2_doc.html"><tt>AB2</tt></a> | <a href="AB4_doc.html"><tt>AB4</tt></a> | <a href="AB5_doc.html"><tt>AB5</tt></a> | <a href="AB6_doc.html"><tt>AB6</tt></a> | <a href="AB7_doc.html"><tt>AB7</tt></a> | <a href="AB8_doc.html"><tt>AB8</tt></a></p><p class="footer"><br><a href="https://www.mathworks.com/products/matlab/">Published with MATLAB&reg; R2022a</a><br></p></div><!--
</p><h2 id="4">See also</h2><p><a href="AB2_doc.html"><tt>AB2</tt></a> | <a href="AB4_doc.html"><tt>AB4</tt></a> | <a href="AB5_doc.html"><tt>AB5</tt></a> | <a href="AB6_doc.html"><tt>AB6</tt></a> | <a href="AB7_doc.html"><tt>AB7</tt></a> | <a href="AB8_doc.html"><tt>AB8</tt></a></p><p class="footer"><br><a href="https://www.mathworks.com/products/matlab/">Published with MATLAB&reg; R2022a</a><br></p></div><!--
##### SOURCE BEGIN #####
%% |AB3|
% Propagates the state vector forward one time step using the
Expand Down Expand Up @@ -176,8 +176,6 @@
% </tr>
% </table>
% </html>
%% Note
% * $p=$ dimension of state vector (for the scalar case, $p=1$).
%% See also
% <AB2_doc.html |AB2|> |
% <AB4_doc.html |AB4|> |
Expand Down
Binary file modified docs/AB3_doc_eq03148538246847756930.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed docs/AB3_doc_eq06235627993914477729.png
Binary file not shown.
Binary file modified docs/AB3_doc_eq11546780198861005830.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed docs/AB3_doc_eq14406891124849479077.png
Binary file not shown.
6 changes: 2 additions & 4 deletions docs/AB4_doc.html
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@



</style></head><body><div class="content"><h1><tt>AB4</tt></h1><!--introduction--><p>Propagates the state vector forward one time step using the Adams-Bashforth 4th-order method.</p><p><a href="index.html">Back to IVP Solver Toolbox Contents</a>.</p><!--/introduction--><h2>Contents</h2><div><ul><li><a href="#1">Syntax</a></li><li><a href="#2">Description</a></li><li><a href="#3">Input/Output Parameters</a></li><li><a href="#4">Note</a></li><li><a href="#5">See also</a></li></ul></div><h2 id="1">Syntax</h2><pre class="language-matlab">F = AB4(f,t,F,h)
</style></head><body><div class="content"><h1><tt>AB4</tt></h1><!--introduction--><p>Propagates the state vector forward one time step using the Adams-Bashforth 4th-order method.</p><p><a href="index.html">Back to IVP Solver Toolbox Contents</a>.</p><!--/introduction--><h2>Contents</h2><div><ul><li><a href="#1">Syntax</a></li><li><a href="#2">Description</a></li><li><a href="#3">Input/Output Parameters</a></li><li><a href="#4">See also</a></li></ul></div><h2 id="1">Syntax</h2><pre class="language-matlab">F = AB4(f,t,F,h)
</pre><h2 id="2">Description</h2><p><tt>F = AB4(f,t,y,h)</tt> updates the <img src="AB4_doc_eq03148538246847756930.png" alt="$\mathbf{F}$" style="width:8px;height:8px;"> matrix, <tt>F</tt>, for the next sample time, given the <img src="AB4_doc_eq03148538246847756930.png" alt="$\mathbf{F}$" style="width:8px;height:8px;"> matrix at the current time <tt>t</tt>, the function <tt>f(t,y)</tt> defining the ODE <img src="AB4_doc_eq11546780198861005830.png" alt="$d\mathbf{y}/dt=\mathbf{f}(t,\mathbf{y})$" style="width:71px;height:11px;">, and the step size <tt>h</tt>.</p><h2 id="3">Input/Output Parameters</h2><p>
<table border=1>
<tr>
Expand Down Expand Up @@ -114,7 +114,7 @@
<td style="text-align:center">p×5<BR>double</td>
</tr>
</table>
</p><h2 id="4">Note</h2><div><ul><li><img src="AB4_doc_eq06235627993914477729.png" alt="$p=$" style="width:17px;height:8px;"> dimension of state vector (for the scalar case, <img src="AB4_doc_eq14406891124849479077.png" alt="$p=1$" style="width:25px;height:10px;">).</li></ul></div><h2 id="5">See also</h2><p><a href="AB2_doc.html"><tt>AB2</tt></a> | <a href="AB3_doc.html"><tt>AB3</tt></a> | <a href="AB5_doc.html"><tt>AB5</tt></a> | <a href="AB6_doc.html"><tt>AB6</tt></a> | <a href="AB7_doc.html"><tt>AB7</tt></a> | <a href="AB8_doc.html"><tt>AB8</tt></a></p><p class="footer"><br><a href="https://www.mathworks.com/products/matlab/">Published with MATLAB&reg; R2022a</a><br></p></div><!--
</p><h2 id="4">See also</h2><p><a href="AB2_doc.html"><tt>AB2</tt></a> | <a href="AB3_doc.html"><tt>AB3</tt></a> | <a href="AB5_doc.html"><tt>AB5</tt></a> | <a href="AB6_doc.html"><tt>AB6</tt></a> | <a href="AB7_doc.html"><tt>AB7</tt></a> | <a href="AB8_doc.html"><tt>AB8</tt></a></p><p class="footer"><br><a href="https://www.mathworks.com/products/matlab/">Published with MATLAB&reg; R2022a</a><br></p></div><!--
##### SOURCE BEGIN #####
%% |AB4|
% Propagates the state vector forward one time step using the
Expand Down Expand Up @@ -176,8 +176,6 @@
% </tr>
% </table>
% </html>
%% Note
% * $p=$ dimension of state vector (for the scalar case, $p=1$).
%% See also
% <AB2_doc.html |AB2|> |
% <AB3_doc.html |AB3|> |
Expand Down
Binary file modified docs/AB4_doc_eq03148538246847756930.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed docs/AB4_doc_eq06235627993914477729.png
Binary file not shown.
Binary file modified docs/AB4_doc_eq11546780198861005830.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed docs/AB4_doc_eq14406891124849479077.png
Binary file not shown.
6 changes: 2 additions & 4 deletions docs/AB5_doc.html
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@



</style></head><body><div class="content"><h1><tt>AB5</tt></h1><!--introduction--><p>Propagates the state vector forward one time step using the Adams-Bashforth 5th-order method.</p><p><a href="index.html">Back to IVP Solver Toolbox Contents</a>.</p><!--/introduction--><h2>Contents</h2><div><ul><li><a href="#1">Syntax</a></li><li><a href="#2">Description</a></li><li><a href="#3">Input/Output Parameters</a></li><li><a href="#4">Note</a></li><li><a href="#5">See also</a></li></ul></div><h2 id="1">Syntax</h2><pre class="language-matlab">F = AB5(f,t,F,h)
</style></head><body><div class="content"><h1><tt>AB5</tt></h1><!--introduction--><p>Propagates the state vector forward one time step using the Adams-Bashforth 5th-order method.</p><p><a href="index.html">Back to IVP Solver Toolbox Contents</a>.</p><!--/introduction--><h2>Contents</h2><div><ul><li><a href="#1">Syntax</a></li><li><a href="#2">Description</a></li><li><a href="#3">Input/Output Parameters</a></li><li><a href="#4">See also</a></li></ul></div><h2 id="1">Syntax</h2><pre class="language-matlab">F = AB5(f,t,F,h)
</pre><h2 id="2">Description</h2><p><tt>F = AB5(f,t,y,h)</tt> updates the <img src="AB5_doc_eq03148538246847756930.png" alt="$\mathbf{F}$" style="width:8px;height:8px;"> matrix, <tt>F</tt>, for the next sample time, given the <img src="AB5_doc_eq03148538246847756930.png" alt="$\mathbf{F}$" style="width:8px;height:8px;"> matrix at the current time <tt>t</tt>, the function <tt>f(t,y)</tt> defining the ODE <img src="AB5_doc_eq11546780198861005830.png" alt="$d\mathbf{y}/dt=\mathbf{f}(t,\mathbf{y})$" style="width:71px;height:11px;">, and the step size <tt>h</tt>.</p><h2 id="3">Input/Output Parameters</h2><p>
<table border=1>
<tr>
Expand Down Expand Up @@ -114,7 +114,7 @@
<td style="text-align:center">p×6<BR>double</td>
</tr>
</table>
</p><h2 id="4">Note</h2><div><ul><li><img src="AB5_doc_eq06235627993914477729.png" alt="$p=$" style="width:17px;height:8px;"> dimension of state vector (for the scalar case, <img src="AB5_doc_eq14406891124849479077.png" alt="$p=1$" style="width:25px;height:10px;">).</li></ul></div><h2 id="5">See also</h2><p><a href="AB2_doc.html"><tt>AB2</tt></a> | <a href="AB3_doc.html"><tt>AB3</tt></a> | <a href="AB4_doc.html"><tt>AB4</tt></a> | <a href="AB6_doc.html"><tt>AB6</tt></a> | <a href="AB7_doc.html"><tt>AB7</tt></a> | <a href="AB8_doc.html"><tt>AB8</tt></a></p><p class="footer"><br><a href="https://www.mathworks.com/products/matlab/">Published with MATLAB&reg; R2022a</a><br></p></div><!--
</p><h2 id="4">See also</h2><p><a href="AB2_doc.html"><tt>AB2</tt></a> | <a href="AB3_doc.html"><tt>AB3</tt></a> | <a href="AB4_doc.html"><tt>AB4</tt></a> | <a href="AB6_doc.html"><tt>AB6</tt></a> | <a href="AB7_doc.html"><tt>AB7</tt></a> | <a href="AB8_doc.html"><tt>AB8</tt></a></p><p class="footer"><br><a href="https://www.mathworks.com/products/matlab/">Published with MATLAB&reg; R2022a</a><br></p></div><!--
##### SOURCE BEGIN #####
%% |AB5|
% Propagates the state vector forward one time step using the
Expand Down Expand Up @@ -176,8 +176,6 @@
% </tr>
% </table>
% </html>
%% Note
% * $p=$ dimension of state vector (for the scalar case, $p=1$).
%% See also
% <AB2_doc.html |AB2|> |
% <AB3_doc.html |AB3|> |
Expand Down
Binary file modified docs/AB5_doc_eq03148538246847756930.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed docs/AB5_doc_eq06235627993914477729.png
Binary file not shown.
Binary file modified docs/AB5_doc_eq11546780198861005830.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed docs/AB5_doc_eq14406891124849479077.png
Binary file not shown.
6 changes: 2 additions & 4 deletions docs/AB6_doc.html
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@



</style></head><body><div class="content"><h1><tt>AB6</tt></h1><!--introduction--><p>Propagates the state vector forward one time step using the Adams-Bashforth 6th-order method.</p><p><a href="index.html">Back to IVP Solver Toolbox Contents</a>.</p><!--/introduction--><h2>Contents</h2><div><ul><li><a href="#1">Syntax</a></li><li><a href="#2">Description</a></li><li><a href="#3">Input/Output Parameters</a></li><li><a href="#4">Note</a></li><li><a href="#5">See also</a></li></ul></div><h2 id="1">Syntax</h2><pre class="language-matlab">F = AB6(f,t,F,h)
</style></head><body><div class="content"><h1><tt>AB6</tt></h1><!--introduction--><p>Propagates the state vector forward one time step using the Adams-Bashforth 6th-order method.</p><p><a href="index.html">Back to IVP Solver Toolbox Contents</a>.</p><!--/introduction--><h2>Contents</h2><div><ul><li><a href="#1">Syntax</a></li><li><a href="#2">Description</a></li><li><a href="#3">Input/Output Parameters</a></li><li><a href="#4">See also</a></li></ul></div><h2 id="1">Syntax</h2><pre class="language-matlab">F = AB6(f,t,F,h)
</pre><h2 id="2">Description</h2><p><tt>F = AB6(f,t,y,h)</tt> updates the <img src="AB6_doc_eq03148538246847756930.png" alt="$\mathbf{F}$" style="width:8px;height:8px;"> matrix, <tt>F</tt>, for the next sample time, given the <img src="AB6_doc_eq03148538246847756930.png" alt="$\mathbf{F}$" style="width:8px;height:8px;"> matrix at the current time <tt>t</tt>, the function <tt>f(t,y)</tt> defining the ODE <img src="AB6_doc_eq11546780198861005830.png" alt="$d\mathbf{y}/dt=\mathbf{f}(t,\mathbf{y})$" style="width:71px;height:11px;">, and the step size <tt>h</tt>.</p><h2 id="3">Input/Output Parameters</h2><p>
<table border=1>
<tr>
Expand Down Expand Up @@ -114,7 +114,7 @@
<td style="text-align:center">p×7<BR>double</td>
</tr>
</table>
</p><h2 id="4">Note</h2><div><ul><li><img src="AB6_doc_eq06235627993914477729.png" alt="$p=$" style="width:17px;height:8px;"> dimension of state vector (for the scalar case, <img src="AB6_doc_eq14406891124849479077.png" alt="$p=1$" style="width:25px;height:10px;">).</li></ul></div><h2 id="5">See also</h2><p><a href="AB2_doc.html"><tt>AB2</tt></a> | <a href="AB3_doc.html"><tt>AB3</tt></a> | <a href="AB4_doc.html"><tt>AB4</tt></a> | <a href="AB5_doc.html"><tt>AB5</tt></a> | <a href="AB7_doc.html"><tt>AB7</tt></a> | <a href="AB8_doc.html"><tt>AB8</tt></a></p><p class="footer"><br><a href="https://www.mathworks.com/products/matlab/">Published with MATLAB&reg; R2022a</a><br></p></div><!--
</p><h2 id="4">See also</h2><p><a href="AB2_doc.html"><tt>AB2</tt></a> | <a href="AB3_doc.html"><tt>AB3</tt></a> | <a href="AB4_doc.html"><tt>AB4</tt></a> | <a href="AB5_doc.html"><tt>AB5</tt></a> | <a href="AB7_doc.html"><tt>AB7</tt></a> | <a href="AB8_doc.html"><tt>AB8</tt></a></p><p class="footer"><br><a href="https://www.mathworks.com/products/matlab/">Published with MATLAB&reg; R2022a</a><br></p></div><!--
##### SOURCE BEGIN #####
%% |AB6|
% Propagates the state vector forward one time step using the
Expand Down Expand Up @@ -176,8 +176,6 @@
% </tr>
% </table>
% </html>
%% Note
% * $p=$ dimension of state vector (for the scalar case, $p=1$).
%% See also
% <AB2_doc.html |AB2|> |
% <AB3_doc.html |AB3|> |
Expand Down
Binary file modified docs/AB6_doc_eq03148538246847756930.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed docs/AB6_doc_eq06235627993914477729.png
Binary file not shown.
Binary file modified docs/AB6_doc_eq11546780198861005830.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed docs/AB6_doc_eq14406891124849479077.png
Binary file not shown.
6 changes: 2 additions & 4 deletions docs/AB7_doc.html
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@



</style></head><body><div class="content"><h1><tt>AB7</tt></h1><!--introduction--><p>Propagates the state vector forward one time step using the Adams-Bashforth 7th-order method.</p><p><a href="index.html">Back to IVP Solver Toolbox Contents</a>.</p><!--/introduction--><h2>Contents</h2><div><ul><li><a href="#1">Syntax</a></li><li><a href="#2">Description</a></li><li><a href="#3">Input/Output Parameters</a></li><li><a href="#4">Note</a></li><li><a href="#5">See also</a></li></ul></div><h2 id="1">Syntax</h2><pre class="language-matlab">F = AB7(f,t,F,h)
</style></head><body><div class="content"><h1><tt>AB7</tt></h1><!--introduction--><p>Propagates the state vector forward one time step using the Adams-Bashforth 7th-order method.</p><p><a href="index.html">Back to IVP Solver Toolbox Contents</a>.</p><!--/introduction--><h2>Contents</h2><div><ul><li><a href="#1">Syntax</a></li><li><a href="#2">Description</a></li><li><a href="#3">Input/Output Parameters</a></li><li><a href="#4">See also</a></li></ul></div><h2 id="1">Syntax</h2><pre class="language-matlab">F = AB7(f,t,F,h)
</pre><h2 id="2">Description</h2><p><tt>F = AB7(f,t,y,h)</tt> updates the <img src="AB7_doc_eq03148538246847756930.png" alt="$\mathbf{F}$" style="width:8px;height:8px;"> matrix, <tt>F</tt>, for the next sample time, given the <img src="AB7_doc_eq03148538246847756930.png" alt="$\mathbf{F}$" style="width:8px;height:8px;"> matrix at the current time <tt>t</tt>, the function <tt>f(t,y)</tt> defining the ODE <img src="AB7_doc_eq11546780198861005830.png" alt="$d\mathbf{y}/dt=\mathbf{f}(t,\mathbf{y})$" style="width:71px;height:11px;">, and the step size <tt>h</tt>.</p><h2 id="3">Input/Output Parameters</h2><p>
<table border=1>
<tr>
Expand Down Expand Up @@ -114,7 +114,7 @@
<td style="text-align:center">p×8<BR>double</td>
</tr>
</table>
</p><h2 id="4">Note</h2><div><ul><li><img src="AB7_doc_eq06235627993914477729.png" alt="$p=$" style="width:17px;height:8px;"> dimension of state vector (for the scalar case, <img src="AB7_doc_eq14406891124849479077.png" alt="$p=1$" style="width:25px;height:10px;">).</li></ul></div><h2 id="5">See also</h2><p><a href="AB2_doc.html"><tt>AB2</tt></a> | <a href="AB3_doc.html"><tt>AB3</tt></a> | <a href="AB4_doc.html"><tt>AB4</tt></a> | <a href="AB5_doc.html"><tt>AB5</tt></a> | <a href="AB6_doc.html"><tt>AB6</tt></a> | <a href="AB8_doc.html"><tt>AB8</tt></a></p><p class="footer"><br><a href="https://www.mathworks.com/products/matlab/">Published with MATLAB&reg; R2022a</a><br></p></div><!--
</p><h2 id="4">See also</h2><p><a href="AB2_doc.html"><tt>AB2</tt></a> | <a href="AB3_doc.html"><tt>AB3</tt></a> | <a href="AB4_doc.html"><tt>AB4</tt></a> | <a href="AB5_doc.html"><tt>AB5</tt></a> | <a href="AB6_doc.html"><tt>AB6</tt></a> | <a href="AB8_doc.html"><tt>AB8</tt></a></p><p class="footer"><br><a href="https://www.mathworks.com/products/matlab/">Published with MATLAB&reg; R2022a</a><br></p></div><!--
##### SOURCE BEGIN #####
%% |AB7|
% Propagates the state vector forward one time step using the
Expand Down Expand Up @@ -176,8 +176,6 @@
% </tr>
% </table>
% </html>
%% Note
% * $p=$ dimension of state vector (for the scalar case, $p=1$).
%% See also
% <AB2_doc.html |AB2|> |
% <AB3_doc.html |AB3|> |
Expand Down
Binary file modified docs/AB7_doc_eq03148538246847756930.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed docs/AB7_doc_eq06235627993914477729.png
Binary file not shown.
Binary file modified docs/AB7_doc_eq11546780198861005830.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed docs/AB7_doc_eq14406891124849479077.png
Binary file not shown.
Loading

0 comments on commit 9c9dec8

Please sign in to comment.