Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16,763 changes: 4,491 additions & 12,272 deletions docs/source/_tutorials/tutorial10paramdmd.html

Large diffs are not rendered by default.

4,260 changes: 2,126 additions & 2,134 deletions docs/source/_tutorials/tutorial12cdmd.html

Large diffs are not rendered by default.

16,558 changes: 4,681 additions & 11,877 deletions docs/source/_tutorials/tutorial14bopdmd.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/source/_tutorials/tutorial15pidmd.html

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions docs/source/_tutorials/tutorial16rdmd.html

Large diffs are not rendered by default.

86 changes: 65 additions & 21 deletions docs/source/_tutorials/tutorial18lando.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/source/_tutorials/tutorial19havok.html
Original file line number Diff line number Diff line change
Expand Up @@ -7712,7 +7712,7 @@ <h3 id="Basic-HAVOK-application">Basic HAVOK application<a class="anchor-link" h
<div class="jp-OutputArea-child jp-OutputArea-executeResult">
<div class="jp-OutputPrompt jp-OutputArea-prompt">Out[4]:</div>
<div class="jp-RenderedText jp-OutputArea-output jp-OutputArea-executeResult" data-mime-type="text/plain" tabindex="0">
<pre>&lt;pydmd.havok.HAVOK at 0x7fbe35b75b20&gt;</pre>
<pre>&lt;pydmd.havok.HAVOK at 0x7f92dc56e220&gt;</pre>
</div>
</div>
</div>
Expand Down
86 changes: 60 additions & 26 deletions docs/source/_tutorials/tutorial1dmd.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion tutorials/tutorial10/tutorial-10-paramdmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# # Parametric Dynamic Mode Decomposition
#
# In this tutorial we explore the usage of the class `pydmd.ParametricDMD`, presented in *A Dynamic Mode Decomposition Extension for the Forecasting of Parametric Dynamical Systems* by Andreuzzi et all ( [doi](https://doi.org/10.1137/22M1481658) ). The approach provides an extension Dynamic Mode Decomposition to parametric problems, in order to obtain predictions for future time instants in untested parameters.
# In this tutorial we explore the usage of the class `pydmd.ParametricDMD`, presented in *A Dynamic Mode Decomposition Extension for the Forecasting of Parametric Dynamical Systems* by Andreuzzi et all ([doi](https://doi.org/10.1137/22M1481658) ). The approach provides an extension Dynamic Mode Decomposition to parametric problems, in order to obtain predictions for future time instants in untested parameters.
#
# We'll examine a simple parametric time-dependent problem, the sum of two complex period functions:
# $$\begin{cases}
Expand Down
2 changes: 1 addition & 1 deletion tutorials/tutorial14/tutorial-14-bop-dmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def relative_error(x_est, x_true):


optdmd = BOPDMD(svd_rank=1, num_trials=0)
bopdmd = BOPDMD(svd_rank=1, num_trials=100)
bopdmd = BOPDMD(svd_rank=1, num_trials=100, varpro_opts_dict={"tol": 0.0115})
dmd = DMD(svd_rank=1, tlsq_rank=2, exact=True, opt=True)

optdmd.fit(snapshots_1d, time)
Expand Down