1# Concept Collection
3This is a collection of random small projects and demos, most of which can be run entirely in the web browser (client side). Many of them are centered around the [numbl project](https://numbl.org).
5## MATLAB syntax in Jupyter, all in the browser
7Here's a proof of concept for running MATLAB syntax in Jupyter entirely client side (no kernel, no server). It uses numbl and JupyterLite.
9- **[jupyterlite-numbl-kernel](https://github.com/concept-collection/jupyterlite-numbl-kernel)** · [live](https://concept-collection.github.io/jupyterlite-numbl-kernel/)
11## Interactive MCMC samplers
13Here are a couple of demonstrations of MCMC samplers that you can watch run. They use numbl (MATLAB syntax in the browser) to do the sampling client-side in the browser. In the case of WALNUTS (the within-orbit adaptive leapfrog No-U-Turn Sampler), we use the exact MATLAB code that is a companion to the paper.
15- **[hitandrun-interactive](https://github.com/concept-collection/hitandrun-interactive)** · [live](https://concept-collection.github.io/hitandrun-interactive/#figure/sampler)
16- **[walnuts-interactive](https://github.com/concept-collection/walnuts-interactive)** · [live](https://concept-collection.github.io/walnuts-interactive/#figure/sampler)
18## Embedding & hosting numbl projects
20Here are a couple of projects that let you embed or host your own numbl/MATLAB projects entirely client side.
22- **[numbl-embed-example](https://github.com/concept-collection/numbl-embed-example)** · [live](https://concept-collection.github.io/numbl-embed-example/)
23- **[numbl-project-example](https://github.com/concept-collection/numbl-project-example)** · [live](https://concept-collection.github.io/numbl-project-example/)
25## VS Code–style IDEs
27Here are a couple of VS Code–style IDEs that run entirely in the browser: one for MATLAB syntax (via numbl), one for Stan.
29- **[numbl-web-ide](https://github.com/concept-collection/numbl-web-ide)** · [live](https://concept-collection.github.io/numbl-web-ide/)
30- **[stan-web-ide](https://github.com/concept-collection/stan-web-ide)** · [live](https://concept-collection.github.io/stan-web-ide/)
32## surfacefun examples
34[Surfacefun](https://surfacefun.readthedocs.io/en/latest/) is a MATLAB package for computing with functions defined on surfaces and solving PDEs on them to high order. Here are some examples that run surfacefun via numbl in the browser.
36- **[numbl-surfacefun-intro](https://github.com/concept-collection/numbl-surfacefun-intro)** · [live](https://concept-collection.github.io/numbl-surfacefun-intro/)
37- **[surfacefun-interactive](https://github.com/concept-collection/surfacefun-interactive)** · [live](https://concept-collection.github.io/surfacefun-interactive/)
38- **[mesh-pde-solver](https://github.com/concept-collection/mesh-pde-solver)** · [live](https://concept-collection.github.io/mesh-pde-solver/)
40## chunkie examples
42[Chunkie](https://chunkie.readthedocs.io/en/latest/) is a MATLAB package for solving boundary integral equations in two dimensions. Here are some examples that run chunkie via numbl in the browser.
44- **[numbl-chunkie](https://github.com/concept-collection/numbl-chunkie)** · [live](https://concept-collection.github.io/numbl-chunkie/)
46## MRI pulse sequences
48[Pulseq](https://pulseq.github.io/) is an open framework for defining MRI pulse sequences. Here you can write pulseq sequences in MATLAB syntax and run them in the browser via numbl to generate a `.seq` file, upload and interactively explore an existing one, or simulate one on a digital phantom to see the raw k-space it acquires.
50- **[seqlab](https://github.com/concept-collection/seqlab)** · [live](https://concept-collection.github.io/seqlab/)
51- **[mri-scanner](https://github.com/concept-collection/mri-scanner)** · [live](https://concept-collection.github.io/mri-scanner/)
53## Spherical harmonics on the GPU
55Here are spherical harmonic transforms reimplemented from scratch as WebGPU compute shaders, modeled on [SHTNS](https://nschaeff.bitbucket.io/shtns/), together with a live reaction-diffusion solver built on them: Turing patterns forming on a sphere, with diffusion handled implicitly in spectral space where the Laplace-Beltrami operator is diagonal.
57- **[shtns-webgpu](https://github.com/concept-collection/shtns-webgpu)** · [live](https://concept-collection.github.io/shtns-webgpu/)
58- **[turing-sphere](https://github.com/concept-collection/turing-sphere)** · [live](https://concept-collection.github.io/turing-sphere/)
60## MATLAB scripts on WebGPU
62A sandbox that compiles MATLAB-syntax scripts to fused WebGPU compute kernels and times them with the script's own `tic`/`toc` — paste the same script into real MATLAB to compare. Built on numbl's compiler front end.
64- **[math-webgpu-sandbox](https://github.com/concept-collection/math-webgpu-sandbox)** · [live](https://concept-collection.github.io/math-webgpu-sandbox/)
66## Matrix multiplication benchmark
68Here's a benchmark of matrix-matrix multiply (GEMM) in the browser across several implementations: a plain JavaScript loop, WebGPU, hand-written C compiled to WASM (SIMD and threads), and a real BLAS (libFLAME) compiled to WASM, with a native reference for comparison.
70- **[matmul-bench](https://github.com/concept-collection/matmul-bench)** · [live](https://concept-collection.github.io/matmul-bench/)
72## Lazy reading of remote HDF5 files
74Here's a demo of reading large remote HDF5 files, such as [NWB](https://www.nwb.org/) neurophysiology files, directly in the browser using HTTP range requests, with no full download and no backend. It shows the approach that [neurosift](https://neurosift.app/) uses to browse these files.
76- **[remote-hdf5-lazy-read](https://github.com/concept-collection/remote-hdf5-lazy-read)** · [live](https://concept-collection.github.io/remote-hdf5-lazy-read/)
78## Scientific data compression
80Here are a few projects on compressing scientific data: a step-by-step visualizer for the [Asymmetric Numeral Systems (ANS)](https://ieeexplore.ieee.org/abstract/document/7170048) entropy-coding algorithm, an interactive study of how compressible quantized noisy time series are, a framework for benchmarking compression algorithms on scientific data arrays, and compression benchmarks for electrophysiology recordings.
82- **[ans-visualizer](https://github.com/concept-collection/ans-visualizer)** · [live](https://concept-collection.github.io/ans-visualizer/)
83- **[timeseries-compressibility](https://github.com/concept-collection/timeseries-compressibility)** · [live](https://concept-collection.github.io/timeseries-compressibility/)
84- **[benchcompress](https://github.com/concept-collection/benchcompress)** · [results](https://concept-collection.github.io/benchcompress/) · [paper (WIP)](https://concept-collection.github.io/benchcompress/paper)
85- **[ephys_compression_tests](https://github.com/concept-collection/ephys_compression_tests)** · [results](https://concept-collection.github.io/ephys_compression_tests/)
87## Speech to text in the browser
89Here's a dictation notepad that transcribes as you speak and never sends your audio anywhere: Whisper and Moonshine run locally via [transformers.js](https://github.com/huggingface/transformers.js), on WebGPU where it's available. The transcript accumulates into a document you can edit and copy.
91- **[voicenote](https://github.com/concept-collection/voicenote)** · [live](https://concept-collection.github.io/voicenote/)
93## Other projects
95### numbl platform: templates & tooling
97Utilities and starting points for building your own
98[numbl](https://numbl.org) projects.
100- **[numbl-figure-viewer](https://github.com/concept-collection/numbl-figure-viewer)**
101 ([live](https://concept-collection.github.io/numbl-figure-viewer/)).
102 Open and explore a figure exported from numbl, including its underlying data.
104### Peer-to-peer shared state
106- **[commonroom](https://github.com/concept-collection/commonroom)**
107 ([live](https://concept-collection.github.io/commonroom/)).
108 Serverless group video calls: pick a room name, share the link, and everyone
109 in the room is connected over a full WebRTC mesh (up to 8 people), with
110 room-wide shared settings.
111- **[commonroom-recorder](https://github.com/concept-collection/commonroom-recorder)**
112 ([run with npx](https://concept-collection.github.io/commonroom-recorder/)).
113 Command-line bot that joins a commonroom call as a visible muted participant
114 and records each participant's audio (plus the chat) to files for
115 transcription.
116- **[commoncall](https://github.com/concept-collection/commoncall)**
117 ([live](https://concept-collection.github.io/commoncall/)).
118 Serverless video calls: enter an ID, see who else is on the page, and call
119 them — call setup rides over nostr relays, media flows peer-to-peer via WebRTC.
120- **[hitandrun-commonview](https://github.com/concept-collection/hitandrun-commonview)**
121 ([live](https://concept-collection.github.io/hitandrun-commonview/)).
122 The hit-and-run figure with a single live view shared by all visitors over a
123 WebRTC mesh; one peer runs the sampler via numbl and broadcasts to the rest.
124- **[commonview](https://github.com/concept-collection/commonview)**
125 ([live](https://concept-collection.github.io/commonview/)).
126 A minimal peer-to-peer page where every visitor shares one state (a counter):
127 nostr discovery, a WebRTC mesh, and a central-peer authority. The basis for
128 hitandrun-commonview.
130### Geometry, meshing & PDE solvers
132- **[mesh-studio](https://github.com/concept-collection/mesh-studio)**
133 ([live](https://concept-collection.github.io/mesh-studio/)).
134 Build CAD primitives or import STEP/IGES with
135 [OpenCASCADE.js](https://ocjs.org/), then inspect them in 3D — including each
136 face's true NURBS surface (polynomials on faces), not just its triangulation.
137- **[mesh-converter](https://github.com/concept-collection/mesh-converter)**
138 ([live](https://concept-collection.github.io/mesh-converter/)).
139 Convert meshes between 19 formats (PLY, OBJ, STL, VTK, Gmsh, XDMF, …) with
140 [meshio](https://github.com/nschloe/meshio) running in-browser on Pyodide;
141 inspect meshes in 3D and see what a lossy export would drop.
142- **[qhull-wasm-demo](https://github.com/concept-collection/qhull-wasm-demo)**
143 ([live](https://concept-collection.github.io/qhull-wasm-demo/)).
144 Demos and benchmarks for [qhull-wasm](https://github.com/magland/qhull-wasm),
145 which compiles [Qhull](http://www.qhull.org) to WebAssembly. Includes 2-D
146 Delaunay triangulation, 3-D convex hull, and a Delaunay benchmark with
147 matching scripts for MATLAB, Octave, and numbl.
148- **[numbl-distmesh](https://github.com/concept-collection/numbl-distmesh)**
149 ([live](https://concept-collection.github.io/numbl-distmesh/)).
150 Every example from Persson and Strang's
151 [DistMesh](https://github.com/popersson/DistMesh), meshing 2-D regions and
152 surfaces from signed distance functions.
153- **[abc-step-1000](https://github.com/concept-collection/abc-step-1000)**
154 ([live](https://concept-collection.github.io/abc-step-1000/)).
155 The first 1000 STEP files from the
156 [ABC dataset](https://deep-geometry.github.io/abc-dataset/) of CAD models
157 (Koch et al., CVPR 2019), served gzip-compressed with a JSON manifest for
158 direct download.
160### Neurophysiology data & remote access
162- **[dandiset_000986](https://github.com/concept-collection/dandiset_000986)**
163 ([visualizations](https://concept-collection.github.io/dandiset_000986/)).
164 Reproducible figures and visualizations for
165 [DANDI Dandiset 000986](https://dandiarchive.org/dandiset/000986), a set of
166 mouse auditory cortex recordings.
168### Physics & quantum systems
170- **[mri-spins](https://github.com/concept-collection/mri-spins)**
171 ([live](https://concept-collection.github.io/mri-spins/)).
172 Interactive MRI physics: a 3D sample of spins evolving under the Bloch
173 equations, with RF pulses, gradients, relaxation, a live signal trace, and a
174 spoiled gradient echo sequence with scanner-like gradient sounds.
175- **[numbl-quantum-optics](https://github.com/concept-collection/numbl-quantum-optics)**
176 ([live](https://concept-collection.github.io/numbl-quantum-optics/)).
177 Runnable scripts accompanying the article "Quantum optics in MATLAB"
178 ([arXiv:2309.14354](https://arxiv.org/abs/2309.14354)), covering quantum
179 states, operators, and dynamics.
180- **[numbl-open-quantum-systems](https://github.com/concept-collection/numbl-open-quantum-systems)**
181 ([live](https://concept-collection.github.io/numbl-open-quantum-systems/)).
182 Code from "Coding closed and open quantum systems in MATLAB"
183 ([arXiv:1911.04906](https://arxiv.org/abs/1911.04906)), including Ising
184 dynamics, cavity-QED phase transitions, and Lindblad and non-Markovian
185 evolution.
187### Image processing
189- **[numbl-image-filter](https://github.com/concept-collection/numbl-image-filter)**
190 ([live](https://concept-collection.github.io/numbl-image-filter/)).
191 Upload an image, write a MATLAB-syntax filter, and run it on the image in the
192 browser.
194### Number theory & visual math
196- **[finite-field-visualizer](https://github.com/concept-collection/finite-field-visualizer)**
197 ([live](https://concept-collection.github.io/finite-field-visualizer/)).
198 Color-coded multiplication tables over finite (prime) fields. Step through the
199 primes to watch the structure change.
200- **[gcd-visualizer](https://github.com/concept-collection/gcd-visualizer)**
201 ([live](https://concept-collection.github.io/gcd-visualizer/)).
202 A heatmap of the greatest common divisor of every pair (i, j), laid out as a
203 color-coded table.
204- **[random-points-in-disk](https://github.com/concept-collection/random-points-in-disk)**
205 ([live](https://concept-collection.github.io/random-points-in-disk/)).
206 How many random points does it take before a disk looks like a disk? Voxel-density
207 heatmaps of uniform random sampling, next to the 1/√μ noise prediction.