runmat 0.4.10-dev.6 → 0.4.10-dev.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,4 @@
1
+ import type { BuiltinDoc } from "../../builtins.js";
2
+ declare const builtinDoc: BuiltinDoc;
3
+ export default builtinDoc;
4
+ //# sourceMappingURL=print.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"print.d.ts","sourceRoot":"","sources":["../../../src/generated/builtins/print.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAEpD,QAAA,MAAM,UAAU,EAAE,UA2GjB,CAAC;AAEF,eAAe,UAAU,CAAC"}
@@ -0,0 +1,112 @@
1
+ // @generated by scripts/generate-builtins.cjs
2
+ // Do not edit by hand.
3
+ const builtinDoc = {
4
+ "title": "print",
5
+ "category": "plotting",
6
+ "keywords": [
7
+ "print",
8
+ "figure export",
9
+ "png",
10
+ "plotting",
11
+ "save figure"
12
+ ],
13
+ "summary": "Export the active or specified figure to a PNG file.",
14
+ "gpu_support": {
15
+ "elementwise": false,
16
+ "reduction": false,
17
+ "precisions": [],
18
+ "broadcasting": "none",
19
+ "notes": "`print` is a figure export sink. It gathers filename and option arguments when needed, then serializes the figure through the plotting renderer. Existing GPU-backed plot geometry can still use the shared WGPU plotting path during export."
20
+ },
21
+ "fusion": {
22
+ "elementwise": false,
23
+ "reduction": false,
24
+ "max_inputs": 4,
25
+ "constants": "inline"
26
+ },
27
+ "requires_feature": "plot-core",
28
+ "tested": {
29
+ "unit": "builtins::plotting::print::tests",
30
+ "integration": "direct headless Chrome WASM verification of print.json examples"
31
+ },
32
+ "description": "`print` exports a figure to a file. RunMat currently supports PNG output with MATLAB-style device and resolution tokens, including `print('name', '-dpng')`, `print('name', '-dpng', '-r300')`, and `print(fig, 'name', '-dpng')`. In browser and WASM hosts the file is written through RunMat's virtual filesystem provider so the host can persist or download it.",
33
+ "behaviors": [
34
+ "`print(filename, '-dpng')` writes PNG bytes to `filename`. If the name has no `.png` extension, RunMat appends one.",
35
+ "`print(filename, '-dpng', '-rN')` scales the export dimensions from the default 800 by 600 canvas using `N` DPI relative to RunMat's 150 DPI default.",
36
+ "`print(fig, filename, '-dpng')` exports the specified figure handle instead of the active figure.",
37
+ "Command-style argument order is accepted when RunMat parses command calls into string arguments, such as `print -dpng plot.png`.",
38
+ "PDF, EPS, and SVG device tokens are recognized but return a clear unsupported-device error until those exporters are implemented."
39
+ ],
40
+ "examples": [
41
+ {
42
+ "description": "Export the active figure to a PNG file",
43
+ "input": "x = 0:0.1:2*pi;\nplot(x, sin(x));\nprint(\"sine_plot\", \"-dpng\");"
44
+ },
45
+ {
46
+ "description": "Export at a higher resolution",
47
+ "input": "x = 0:0.1:1;\nplot(x, x.^2, \"LineWidth\", 2);\nprint(\"quadratic_plot\", \"-dpng\", \"-r300\");"
48
+ },
49
+ {
50
+ "description": "Export a specific figure handle",
51
+ "input": "fig = figure();\nplot(1:5, [1 4 2 5 3]);\nprint(fig, \"explicit_handle_plot.png\", \"-dpng\");"
52
+ },
53
+ {
54
+ "description": "Command-style device order",
55
+ "input": "plot(1:4, [1 3 2 4]);\nprint -dpng command_style_plot.png"
56
+ }
57
+ ],
58
+ "faqs": [
59
+ {
60
+ "question": "Which formats does `print` support?",
61
+ "answer": "PNG is supported today with `-dpng`. RunMat recognizes PDF, EPS, and SVG device tokens, but they return an unsupported-device error until those exporters are available in the rendering stack."
62
+ },
63
+ {
64
+ "question": "Where does the file go in the browser?",
65
+ "answer": "The PNG is written through RunMat's filesystem provider. In the sandbox this is usually the in-memory or IndexedDB-backed virtual filesystem, and the host can expose the file as a download artifact."
66
+ },
67
+ {
68
+ "question": "Does `-r300` change the figure data?",
69
+ "answer": "No. It only changes the pixel dimensions used for export. The plot data and graphics handles remain unchanged."
70
+ }
71
+ ],
72
+ "links": [
73
+ {
74
+ "label": "figure",
75
+ "url": "./figure"
76
+ },
77
+ {
78
+ "label": "gcf",
79
+ "url": "./gcf"
80
+ },
81
+ {
82
+ "label": "plot",
83
+ "url": "./plot"
84
+ },
85
+ {
86
+ "label": "Plot replay and export",
87
+ "url": "/docs/plotting/plot-replay-and-export"
88
+ },
89
+ {
90
+ "label": "Complete plotting guide",
91
+ "url": "/blog/matlab-plotting-guide"
92
+ }
93
+ ],
94
+ "source": {
95
+ "label": "`crates/runmat-runtime/src/builtins/plotting/ops/print.rs`",
96
+ "url": "https://github.com/runmat-org/runmat/blob/main/crates/runmat-runtime/src/builtins/plotting/ops/print.rs"
97
+ },
98
+ "gpu_residency": "`print` is an I/O sink and returns a host logical status. Filename and option arguments are gathered before parsing. GPU-resident plot data already captured in figure state may still be consumed by the plotting renderer without forcing user-visible gathers when the shared WGPU export path is available.",
99
+ "gpu_behavior": [
100
+ "No numeric GPU kernels are launched for `print` itself.",
101
+ "The PNG exporter first attempts the interactive GPU render path and falls back to CPU rasterization when headless GPU initialization is unavailable.",
102
+ "The builtin writes PNG bytes through RunMat's filesystem layer, so output storage is host or virtual-filesystem backed."
103
+ ],
104
+ "key": "print",
105
+ "slug": "print",
106
+ "aliases": [],
107
+ "categoryPath": [
108
+ "plotting"
109
+ ]
110
+ };
111
+ export default builtinDoc;
112
+ //# sourceMappingURL=print.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"print.js","sourceRoot":"","sources":["../../../src/generated/builtins/print.ts"],"names":[],"mappings":"AAAA,8CAA8C;AAC9C,uBAAuB;AAIvB,MAAM,UAAU,GAAe;IAC7B,OAAO,EAAE,OAAO;IAChB,UAAU,EAAE,UAAU;IACtB,UAAU,EAAE;QACV,OAAO;QACP,eAAe;QACf,KAAK;QACL,UAAU;QACV,aAAa;KACd;IACD,SAAS,EAAE,sDAAsD;IACjE,aAAa,EAAE;QACb,aAAa,EAAE,KAAK;QACpB,WAAW,EAAE,KAAK;QAClB,YAAY,EAAE,EAAE;QAChB,cAAc,EAAE,MAAM;QACtB,OAAO,EAAE,+OAA+O;KACzP;IACD,QAAQ,EAAE;QACR,aAAa,EAAE,KAAK;QACpB,WAAW,EAAE,KAAK;QAClB,YAAY,EAAE,CAAC;QACf,WAAW,EAAE,QAAQ;KACtB;IACD,kBAAkB,EAAE,WAAW;IAC/B,QAAQ,EAAE;QACR,MAAM,EAAE,kCAAkC;QAC1C,aAAa,EAAE,iEAAiE;KACjF;IACD,aAAa,EAAE,uWAAuW;IACtX,WAAW,EAAE;QACX,qHAAqH;QACrH,uJAAuJ;QACvJ,mGAAmG;QACnG,kIAAkI;QAClI,mIAAmI;KACpI;IACD,UAAU,EAAE;QACV;YACE,aAAa,EAAE,wCAAwC;YACvD,OAAO,EAAE,qEAAqE;SAC/E;QACD;YACE,aAAa,EAAE,+BAA+B;YAC9C,OAAO,EAAE,kGAAkG;SAC5G;QACD;YACE,aAAa,EAAE,iCAAiC;YAChD,OAAO,EAAE,gGAAgG;SAC1G;QACD;YACE,aAAa,EAAE,4BAA4B;YAC3C,OAAO,EAAE,2DAA2D;SACrE;KACF;IACD,MAAM,EAAE;QACN;YACE,UAAU,EAAE,qCAAqC;YACjD,QAAQ,EAAE,iMAAiM;SAC5M;QACD;YACE,UAAU,EAAE,wCAAwC;YACpD,QAAQ,EAAE,wMAAwM;SACnN;QACD;YACE,UAAU,EAAE,sCAAsC;YAClD,QAAQ,EAAE,gHAAgH;SAC3H;KACF;IACD,OAAO,EAAE;QACP;YACE,OAAO,EAAE,QAAQ;YACjB,KAAK,EAAE,UAAU;SAClB;QACD;YACE,OAAO,EAAE,KAAK;YACd,KAAK,EAAE,OAAO;SACf;QACD;YACE,OAAO,EAAE,MAAM;YACf,KAAK,EAAE,QAAQ;SAChB;QACD;YACE,OAAO,EAAE,wBAAwB;YACjC,KAAK,EAAE,uCAAuC;SAC/C;QACD;YACE,OAAO,EAAE,yBAAyB;YAClC,KAAK,EAAE,6BAA6B;SACrC;KACF;IACD,QAAQ,EAAE;QACR,OAAO,EAAE,4DAA4D;QACrE,KAAK,EAAE,yGAAyG;KACjH;IACD,eAAe,EAAE,iTAAiT;IAClU,cAAc,EAAE;QACd,yDAAyD;QACzD,sJAAsJ;QACtJ,yHAAyH;KAC1H;IACD,KAAK,EAAE,OAAO;IACd,MAAM,EAAE,OAAO;IACf,SAAS,EAAE,EAAE;IACb,cAAc,EAAE;QACd,UAAU;KACX;CACF,CAAC;AAEF,eAAe,UAAU,CAAC"}
@@ -0,0 +1,4 @@
1
+ import type { BuiltinDoc } from "../../builtins.js";
2
+ declare const builtinDoc: BuiltinDoc;
3
+ export default builtinDoc;
4
+ //# sourceMappingURL=scatterplot.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"scatterplot.d.ts","sourceRoot":"","sources":["../../../src/generated/builtins/scatterplot.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAEpD,QAAA,MAAM,UAAU,EAAE,UA8GjB,CAAC;AAEF,eAAe,UAAU,CAAC"}
@@ -0,0 +1,115 @@
1
+ // @generated by scripts/generate-builtins.cjs
2
+ // Do not edit by hand.
3
+ const builtinDoc = {
4
+ "title": "scatterplot",
5
+ "category": "communications/plotting",
6
+ "keywords": [
7
+ "scatterplot",
8
+ "constellation diagram",
9
+ "communications toolbox",
10
+ "complex baseband",
11
+ "qam",
12
+ "psk",
13
+ "scatter"
14
+ ],
15
+ "summary": "Plot complex-baseband samples as a 2-D constellation diagram.",
16
+ "gpu_support": {
17
+ "elementwise": false,
18
+ "reduction": false,
19
+ "precisions": [
20
+ "single",
21
+ "double"
22
+ ],
23
+ "broadcasting": "none",
24
+ "notes": "`scatterplot` is a rendering sink. When GPU-resident samples can be split into real and imaginary buffers without decimation, RunMat forwards those buffers to the existing GPU scatter renderer. Decimated or unsupported inputs gather once and render through the same scatter semantics."
25
+ },
26
+ "fusion": {
27
+ "elementwise": false,
28
+ "reduction": false,
29
+ "max_inputs": 1,
30
+ "constants": "inline"
31
+ },
32
+ "requires_feature": null,
33
+ "tested": {
34
+ "unit": "builtins::plotting::scatterplot::tests",
35
+ "integration": "scatter GPU/rendering coverage is inherited from builtins::plotting::scatter and runmat-plot renderer tests"
36
+ },
37
+ "description": "`scatterplot` visualizes complex-baseband samples by plotting `real(x)` on the x-axis and `imag(x)` on the y-axis. It mirrors the MATLAB Communications Toolbox call forms for decimation, offset, marker styling, and target axes while using RunMat's shared `scatter` renderer and graphics-handle model.",
38
+ "behaviors": [
39
+ "`scatterplot(x)` plots every complex sample using a constellation-friendly default marker.",
40
+ "`scatterplot(x, n)` plots every `n`-th sample.",
41
+ "`scatterplot(x, n, offset)` starts at the zero-based offset before applying decimation, matching MATLAB's `x(offset+1:n:end)` behavior.",
42
+ "`scatterplot(x, n, offset, marker)` forwards the marker LineSpec to `scatter`.",
43
+ "`scatterplot(x, n, offset, marker, ax)` targets an existing axes handle.",
44
+ "The generated plot uses equal x/y scaling and grid lines so constellation geometry is not visually distorted."
45
+ ],
46
+ "examples": [
47
+ {
48
+ "description": "Plot a simple QPSK constellation",
49
+ "input": "x = [1+1i; -1+1i; -1-1i; 1-1i];\nscatterplot(x);"
50
+ },
51
+ {
52
+ "description": "Plot every fourth received sample with a custom marker",
53
+ "input": "rx = randn(1000, 1) + 1i*randn(1000, 1);\nscatterplot(rx, 4, 0, 'gx');"
54
+ },
55
+ {
56
+ "description": "Target a subplot axes",
57
+ "input": "ax = subplot(1, 2, 1);\nx = [1+1i; 1-1i; -1+1i; -1-1i];\nscatterplot(x, 1, 0, 'b.', ax);"
58
+ }
59
+ ],
60
+ "faqs": [
61
+ {
62
+ "question": "How is scatterplot different from scatter?",
63
+ "answer": "`scatterplot` is specialized for complex symbols. It derives x/y coordinates from the real and imaginary parts of one input vector, applies Communications Toolbox decimation/offset arguments, and configures the axes for constellation viewing. `scatter` expects explicit x and y coordinate arrays."
64
+ },
65
+ {
66
+ "question": "Does scatterplot support gpuArray inputs?",
67
+ "answer": "Yes. For the no-decimation case, RunMat asks the acceleration provider for real and imaginary GPU buffers and forwards them to the GPU scatter renderer. When decimation is requested or the provider cannot expose those buffers, RunMat gathers the samples once and renders the same visible plot."
68
+ }
69
+ ],
70
+ "links": [
71
+ {
72
+ "label": "scatter",
73
+ "url": "./scatter"
74
+ },
75
+ {
76
+ "label": "plot",
77
+ "url": "./plot"
78
+ },
79
+ {
80
+ "label": "real",
81
+ "url": "./real"
82
+ },
83
+ {
84
+ "label": "imag",
85
+ "url": "./imag"
86
+ },
87
+ {
88
+ "label": "Styling plots and axes",
89
+ "url": "/docs/plotting/styling-plots-and-axes"
90
+ },
91
+ {
92
+ "label": "GPU plotting and residency",
93
+ "url": "/docs/plotting/gpu-plotting-and-residency"
94
+ }
95
+ ],
96
+ "source": {
97
+ "label": "`crates/runmat-runtime/src/builtins/plotting/ops/scatterplot.rs`",
98
+ "url": "https://github.com/runmat-org/runmat/blob/main/crates/runmat-runtime/src/builtins/plotting/ops/scatterplot.rs"
99
+ },
100
+ "gpu_residency": "`scatterplot` preserves GPU residency for the common `scatterplot(x)` path when the active provider can materialize real and imaginary buffers on device. Decimation and provider gaps fall back to one host gather, after which the same `scatter` handle and axes behavior apply.",
101
+ "gpu_behavior": [
102
+ "The direct path reuses the existing 2-D scatter WGPU renderer and avoids an extra host round-trip for supported GPU inputs.",
103
+ "Decimated sample selection is currently performed on the host to preserve MATLAB-compatible offset semantics.",
104
+ "Marker styling, axes targeting, grid, and equal-axis behavior are consistent between GPU and host fallback rendering."
105
+ ],
106
+ "key": "scatterplot",
107
+ "slug": "scatterplot",
108
+ "aliases": [],
109
+ "categoryPath": [
110
+ "communications",
111
+ "plotting"
112
+ ]
113
+ };
114
+ export default builtinDoc;
115
+ //# sourceMappingURL=scatterplot.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"scatterplot.js","sourceRoot":"","sources":["../../../src/generated/builtins/scatterplot.ts"],"names":[],"mappings":"AAAA,8CAA8C;AAC9C,uBAAuB;AAIvB,MAAM,UAAU,GAAe;IAC7B,OAAO,EAAE,aAAa;IACtB,UAAU,EAAE,yBAAyB;IACrC,UAAU,EAAE;QACV,aAAa;QACb,uBAAuB;QACvB,wBAAwB;QACxB,kBAAkB;QAClB,KAAK;QACL,KAAK;QACL,SAAS;KACV;IACD,SAAS,EAAE,+DAA+D;IAC1E,aAAa,EAAE;QACb,aAAa,EAAE,KAAK;QACpB,WAAW,EAAE,KAAK;QAClB,YAAY,EAAE;YACZ,QAAQ;YACR,QAAQ;SACT;QACD,cAAc,EAAE,MAAM;QACtB,OAAO,EAAE,8RAA8R;KACxS;IACD,QAAQ,EAAE;QACR,aAAa,EAAE,KAAK;QACpB,WAAW,EAAE,KAAK;QAClB,YAAY,EAAE,CAAC;QACf,WAAW,EAAE,QAAQ;KACtB;IACD,kBAAkB,EAAE,IAAI;IACxB,QAAQ,EAAE;QACR,MAAM,EAAE,wCAAwC;QAChD,aAAa,EAAE,6GAA6G;KAC7H;IACD,aAAa,EAAE,8SAA8S;IAC7T,WAAW,EAAE;QACX,4FAA4F;QAC5F,gDAAgD;QAChD,yIAAyI;QACzI,gFAAgF;QAChF,0EAA0E;QAC1E,+GAA+G;KAChH;IACD,UAAU,EAAE;QACV;YACE,aAAa,EAAE,kCAAkC;YACjD,OAAO,EAAE,kDAAkD;SAC5D;QACD;YACE,aAAa,EAAE,wDAAwD;YACvE,OAAO,EAAE,wEAAwE;SAClF;QACD;YACE,aAAa,EAAE,uBAAuB;YACtC,OAAO,EAAE,0FAA0F;SACpG;KACF;IACD,MAAM,EAAE;QACN;YACE,UAAU,EAAE,4CAA4C;YACxD,QAAQ,EAAE,0SAA0S;SACrT;QACD;YACE,UAAU,EAAE,2CAA2C;YACvD,QAAQ,EAAE,uSAAuS;SAClT;KACF;IACD,OAAO,EAAE;QACP;YACE,OAAO,EAAE,SAAS;YAClB,KAAK,EAAE,WAAW;SACnB;QACD;YACE,OAAO,EAAE,MAAM;YACf,KAAK,EAAE,QAAQ;SAChB;QACD;YACE,OAAO,EAAE,MAAM;YACf,KAAK,EAAE,QAAQ;SAChB;QACD;YACE,OAAO,EAAE,MAAM;YACf,KAAK,EAAE,QAAQ;SAChB;QACD;YACE,OAAO,EAAE,wBAAwB;YACjC,KAAK,EAAE,uCAAuC;SAC/C;QACD;YACE,OAAO,EAAE,4BAA4B;YACrC,KAAK,EAAE,2CAA2C;SACnD;KACF;IACD,QAAQ,EAAE;QACR,OAAO,EAAE,kEAAkE;QAC3E,KAAK,EAAE,+GAA+G;KACvH;IACD,eAAe,EAAE,qRAAqR;IACtS,cAAc,EAAE;QACd,6HAA6H;QAC7H,+GAA+G;QAC/G,uHAAuH;KACxH;IACD,KAAK,EAAE,aAAa;IACpB,MAAM,EAAE,aAAa;IACrB,SAAS,EAAE,EAAE;IACb,cAAc,EAAE;QACd,gBAAgB;QAChB,UAAU;KACX;CACF,CAAC;AAEF,eAAe,UAAU,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"builtins-manifest.d.ts","sourceRoot":"","sources":["../../src/generated/builtins-manifest.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,gBAAgB,EAAE,oBAAoB,EAAE,MAAM,gBAAgB,CAAC;AAE7E,eAAO,MAAM,eAAe,EAAE,oBAAoB,EA8yQjD,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,MAAM,CAAC,MAAM,EAAE,gBAAgB,CAqa9D,CAAC;AAEF,eAAO,MAAM,4BAA4B,sEAC0C,CAAC"}
1
+ {"version":3,"file":"builtins-manifest.d.ts","sourceRoot":"","sources":["../../src/generated/builtins-manifest.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,gBAAgB,EAAE,oBAAoB,EAAE,MAAM,gBAAgB,CAAC;AAE7E,eAAO,MAAM,eAAe,EAAE,oBAAoB,EAu1QjD,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,MAAM,CAAC,MAAM,EAAE,gBAAgB,CAua9D,CAAC;AAEF,eAAO,MAAM,4BAA4B,sEAC0C,CAAC"}
@@ -5720,6 +5720,25 @@ export const builtinManifest = [
5720
5720
  "summary": "Evaluate a piecewise-polynomial structure.",
5721
5721
  "exampleCount": 1
5722
5722
  },
5723
+ {
5724
+ "key": "print",
5725
+ "title": "print",
5726
+ "slug": "print",
5727
+ "aliases": [],
5728
+ "category": "plotting",
5729
+ "categoryPath": [
5730
+ "plotting"
5731
+ ],
5732
+ "keywords": [
5733
+ "print",
5734
+ "figure export",
5735
+ "png",
5736
+ "plotting",
5737
+ "save figure"
5738
+ ],
5739
+ "summary": "Export the active or specified figure to a PNG file.",
5740
+ "exampleCount": 4
5741
+ },
5723
5742
  {
5724
5743
  "key": "prod",
5725
5744
  "title": "prod",
@@ -6579,6 +6598,28 @@ export const builtinManifest = [
6579
6598
  "summary": "Create 3-D scatter plots for spatial point clouds, encoded markers, and MATLAB `scatter3` workflows.",
6580
6599
  "exampleCount": 4
6581
6600
  },
6601
+ {
6602
+ "key": "scatterplot",
6603
+ "title": "scatterplot",
6604
+ "slug": "scatterplot",
6605
+ "aliases": [],
6606
+ "category": "communications/plotting",
6607
+ "categoryPath": [
6608
+ "communications",
6609
+ "plotting"
6610
+ ],
6611
+ "keywords": [
6612
+ "scatterplot",
6613
+ "constellation diagram",
6614
+ "communications toolbox",
6615
+ "complex baseband",
6616
+ "qam",
6617
+ "psk",
6618
+ "scatter"
6619
+ ],
6620
+ "summary": "Plot complex-baseband samples as a 2-D constellation diagram.",
6621
+ "exampleCount": 3
6622
+ },
6582
6623
  {
6583
6624
  "key": "second",
6584
6625
  "title": "second",
@@ -8778,6 +8819,7 @@ export const builtinDocLoaders = {
8778
8819
  "pow2": () => import("./builtins/pow2.js").then((mod) => mod.default),
8779
8820
  "power": () => import("./builtins/power.js").then((mod) => mod.default),
8780
8821
  "ppval": () => import("./builtins/ppval.js").then((mod) => mod.default),
8822
+ "print": () => import("./builtins/print.js").then((mod) => mod.default),
8781
8823
  "prod": () => import("./builtins/prod.js").then((mod) => mod.default),
8782
8824
  "pwd": () => import("./builtins/pwd.js").then((mod) => mod.default),
8783
8825
  "qammod": () => import("./builtins/qammod.js").then((mod) => mod.default),
@@ -8820,6 +8862,7 @@ export const builtinDocLoaders = {
8820
8862
  "sawtooth": () => import("./builtins/sawtooth.js").then((mod) => mod.default),
8821
8863
  "scatter": () => import("./builtins/scatter.js").then((mod) => mod.default),
8822
8864
  "scatter3": () => import("./builtins/scatter3.js").then((mod) => mod.default),
8865
+ "scatterplot": () => import("./builtins/scatterplot.js").then((mod) => mod.default),
8823
8866
  "second": () => import("./builtins/second.js").then((mod) => mod.default),
8824
8867
  "semilogx": () => import("./builtins/semilogx.js").then((mod) => mod.default),
8825
8868
  "semilogy": () => import("./builtins/semilogy.js").then((mod) => mod.default),