Skip to content

Commit cf14787

Browse files
committed
cobweb diagram demo for discrete map iteration
Interactive cobweb construction for x_{n+1} = f(x_n) with animated step-by-step iteration, parameter r slider, zoom/range controls, speed control, and fixed point detection with stability indicators. Presets: cubic, logistic, quadratic, sine, cosine.
1 parent a5cf971 commit cf14787

File tree

2 files changed

+885
-1
lines changed

2 files changed

+885
-1
lines changed

demos-framework/src/main.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ const demoRegistry: Record<string, () => Promise<DemoModule>> = {
6060
'time-evolution': () => import('@demos/dynamical-systems/time-evolution'),
6161
'phase-and-time': () => import('@demos/dynamical-systems/phase-and-time'),
6262
'parametric-phase-portrait': () => import('@demos/dynamical-systems/parametric-phase-portrait'),
63-
'firefly-synchronization': () => import('@demos/dynamical-systems/firefly-synchronization')
63+
'firefly-synchronization': () => import('@demos/dynamical-systems/firefly-synchronization'),
64+
'cobweb': () => import('@demos/dynamical-systems/cobweb')
6465
};
6566

6667
// Store for loaded metadata

0 commit comments

Comments
 (0)