From 7b9f46310fe6218c2ae570061ee35302d61f46fd Mon Sep 17 00:00:00 2001 From: ChrisRackauckas-Claude Date: Fri, 4 Sep 2026 01:54:19 -0400 Subject: [PATCH] Fix FBDMD documentation cross-reference Mark DMDSVD as a code reference so Documenter resolves it as a docstring rather than a header. Co-Authored-By: Chris Rackauckas Co-Authored-By: OpenAI Codex Agent-Harness: Codex CLI 0.151.0 Agent-Model: gpt-5.6-sol Agent-Session: local session ID 01a0598f-11b9-72d1-91d9-b2fbb186557d --- lib/DataDrivenDMD/src/algorithms.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/DataDrivenDMD/src/algorithms.jl b/lib/DataDrivenDMD/src/algorithms.jl index cc5c7a98..dd673e0a 100644 --- a/lib/DataDrivenDMD/src/algorithms.jl +++ b/lib/DataDrivenDMD/src/algorithms.jl @@ -259,7 +259,7 @@ end $(TYPEDEF) Approximates the Koopman operator `K` via the forward-backward DMD. -It is assumed that `K = sqrt(K₁*inv(K₂))`, where `K₁` is the approximation via forward and `K₂` via [DMDSVD](@ref). Based on [this paper](https://arxiv.org/pdf/1507.02264). +It is assumed that `K = sqrt(K₁*inv(K₂))`, where `K₁` is the approximation via forward and `K₂` via [`DMDSVD`](@ref). Based on [this paper](https://arxiv.org/pdf/1507.02264). If `truncation` ∈ (0, 1) is given, the singular value decomposition is reduced to include only entries bigger than `truncation*maximum(Σ)`. If `truncation` is an integer, the reduced SVD up to `truncation` is used for computation.