runmat 0.4.10-dev.7 → 0.4.10-dev.9
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.
- package/artifacts/stdlib.snapshot +0 -0
- package/dist/generated/builtin-examples-catalog.d.ts.map +1 -1
- package/dist/generated/builtin-examples-catalog.js +1 -1
- package/dist/generated/builtin-examples-catalog.js.map +1 -1
- package/dist/generated/builtins/scatterplot.d.ts +4 -0
- package/dist/generated/builtins/scatterplot.d.ts.map +1 -0
- package/dist/generated/builtins/scatterplot.js +115 -0
- package/dist/generated/builtins/scatterplot.js.map +1 -0
- package/dist/generated/builtins/ss.d.ts +4 -0
- package/dist/generated/builtins/ss.d.ts.map +1 -0
- package/dist/generated/builtins/ss.js +131 -0
- package/dist/generated/builtins/ss.js.map +1 -0
- package/dist/generated/builtins-manifest.d.ts.map +1 -1
- package/dist/generated/builtins-manifest.js +43 -0
- package/dist/generated/builtins-manifest.js.map +1 -1
- package/dist/lsp/runmat_lsp.d.ts +3 -3
- package/dist/lsp/runmat_lsp.js +7 -7
- package/dist/lsp/runmat_lsp_bg.wasm +0 -0
- package/dist/lsp/runmat_lsp_bg.wasm.d.ts +3 -3
- package/dist/pkg-web/runmat_wasm_web.d.ts +3 -3
- package/dist/pkg-web/runmat_wasm_web.js +7 -7
- package/dist/pkg-web/runmat_wasm_web_bg.wasm +0 -0
- package/dist/pkg-web/runmat_wasm_web_bg.wasm.d.ts +3 -3
- package/dist/runtime/stdlib.snapshot +0 -0
- package/package.json +1 -1
|
@@ -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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ss.d.ts","sourceRoot":"","sources":["../../../src/generated/builtins/ss.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAEpD,QAAA,MAAM,UAAU,EAAE,UA8HjB,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
// @generated by scripts/generate-builtins.cjs
|
|
2
|
+
// Do not edit by hand.
|
|
3
|
+
const builtinDoc = {
|
|
4
|
+
"title": "ss",
|
|
5
|
+
"category": "control",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"ss",
|
|
8
|
+
"state space",
|
|
9
|
+
"control system",
|
|
10
|
+
"state matrix",
|
|
11
|
+
"sample time"
|
|
12
|
+
],
|
|
13
|
+
"summary": "Create a state-space model object from A, B, C, and D matrices.",
|
|
14
|
+
"references": [],
|
|
15
|
+
"gpu_support": {
|
|
16
|
+
"elementwise": false,
|
|
17
|
+
"reduction": false,
|
|
18
|
+
"precisions": [],
|
|
19
|
+
"broadcasting": "none",
|
|
20
|
+
"notes": "`ss` constructs host-side metadata. If matrix inputs are gpuArray values, RunMat gathers them before validating dimensions and creating the object."
|
|
21
|
+
},
|
|
22
|
+
"fusion": {
|
|
23
|
+
"elementwise": false,
|
|
24
|
+
"reduction": false,
|
|
25
|
+
"max_inputs": 0,
|
|
26
|
+
"constants": "inline",
|
|
27
|
+
"notes": "`ss` is not fused; it constructs a host-side object."
|
|
28
|
+
},
|
|
29
|
+
"requires_feature": null,
|
|
30
|
+
"tested": {
|
|
31
|
+
"unit": "builtins::control::ss::tests",
|
|
32
|
+
"integration": "crates/runmat-vm/tests/control.rs"
|
|
33
|
+
},
|
|
34
|
+
"description": "`ss(A, B, C, D)` creates a lightweight state-space model object from finite real numeric matrices. `A` is the state matrix, `B` maps inputs to states, `C` maps states to outputs, and `D` is direct feedthrough.",
|
|
35
|
+
"behaviors": [
|
|
36
|
+
"Returns an object whose class name is `ss`.",
|
|
37
|
+
"Stores `A`, `B`, `C`, `D`, `Ts`, `InputDelay`, `OutputDelay`, `StateName`, `InputName`, and `OutputName` properties.",
|
|
38
|
+
"Preserves the input matrix orientations on the returned object.",
|
|
39
|
+
"Uses continuous-time defaults with `Ts` equal to `0`.",
|
|
40
|
+
"`ss(A, B, C, D, Ts)` stores a finite non-negative sample time.",
|
|
41
|
+
"`ss(A, B, C, D, 'Ts', Ts)` and `ss(A, B, C, D, 'SampleTime', Ts)` store a finite non-negative sample time.",
|
|
42
|
+
"Numeric scalar inputs are treated as 1-by-1 matrices and are accepted only when the resulting dimensions are consistent.",
|
|
43
|
+
"Complex, sparse, descriptor-form, uncertain, identified, and generalized models are not supported in this initial implementation."
|
|
44
|
+
],
|
|
45
|
+
"examples": [
|
|
46
|
+
{
|
|
47
|
+
"description": "Creating a continuous-time state-space model",
|
|
48
|
+
"input": "A = [0 1; -2 -3];\nB = [0; 1];\nC = [1 0];\nD = 0;\nG = ss(A, B, C, D);\nclass(G)",
|
|
49
|
+
"output": "ans = \"ss\""
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"description": "Reading stored state-space matrices",
|
|
53
|
+
"input": "G = ss([0 1; -2 -3], [0; 1], [1 0], 0);\nfprintf(\"%.0f %.0f %.0f %.0f %.0f %.0f\\n\", G.A(1), G.A(2), G.A(3), G.A(4), G.B(1), G.B(2));",
|
|
54
|
+
"output": "0 -2 1 -3 0 1"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"description": "Creating a discrete-time model",
|
|
58
|
+
"input": "G = ss(0.5, 1, 1, 0, 0.1);\nfprintf(\"%.1f\\n\", G.Ts);",
|
|
59
|
+
"output": "0.1"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"description": "Specifying sample time with a name-value pair",
|
|
63
|
+
"input": "G = ss(0.5, 1, 1, 0, 'SampleTime', 0.2);\nfprintf(\"%.1f\\n\", G.Ts);",
|
|
64
|
+
"output": "0.2"
|
|
65
|
+
}
|
|
66
|
+
],
|
|
67
|
+
"faqs": [
|
|
68
|
+
{
|
|
69
|
+
"question": "Does `ss` simulate step or impulse responses?",
|
|
70
|
+
"answer": "No. This builtin constructs a state-space object. Response functions can add `ss` parsing separately."
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"question": "Does `ss` accept complex or sparse matrices?",
|
|
74
|
+
"answer": "Not yet. Inputs must be finite real numeric scalars or dense matrices."
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"question": "How are dimensions validated?",
|
|
78
|
+
"answer": "`A` must be n-by-n, `B` must be n-by-nu, `C` must be ny-by-n, and `D` must be ny-by-nu."
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"question": "Will `ss(gpuArray(A), B, C, D)` return a gpuArray-backed object?",
|
|
82
|
+
"answer": "No. `ss` gathers gpuArray inputs and stores host tensors on the returned object."
|
|
83
|
+
}
|
|
84
|
+
],
|
|
85
|
+
"links": [
|
|
86
|
+
{
|
|
87
|
+
"label": "tf",
|
|
88
|
+
"url": "./tf"
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"label": "step",
|
|
92
|
+
"url": "./step"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"label": "impulse",
|
|
96
|
+
"url": "./impulse"
|
|
97
|
+
}
|
|
98
|
+
],
|
|
99
|
+
"source": {
|
|
100
|
+
"label": "`crates/runmat-runtime/src/builtins/control/ss.rs`",
|
|
101
|
+
"url": "https://github.com/runmat-org/runmat/blob/main/crates/runmat-runtime/src/builtins/control/ss.rs"
|
|
102
|
+
},
|
|
103
|
+
"syntax": {
|
|
104
|
+
"example": {
|
|
105
|
+
"description": "Supported forms",
|
|
106
|
+
"input": "G = ss(A, B, C, D)\nG = ss(A, B, C, D, Ts)\nG = ss(A, B, C, D, 'Ts', Ts)\nG = ss(A, B, C, D, 'SampleTime', Ts)",
|
|
107
|
+
"output": "G is an ss object."
|
|
108
|
+
},
|
|
109
|
+
"points": [
|
|
110
|
+
"`A`, `B`, `C`, and `D` must be finite real numeric scalars or dense matrices.",
|
|
111
|
+
"`Ts` is optional and must be a finite non-negative scalar.",
|
|
112
|
+
"The object stores matrices exactly in the provided orientation after gpuArray gathering."
|
|
113
|
+
]
|
|
114
|
+
},
|
|
115
|
+
"validation": {
|
|
116
|
+
"summary": "`ss` validates finite real matrix inputs, state-space dimension consistency, supported name-value options, and sample-time constraints before constructing the host-side object. Unit and integration tests cover continuous and discrete constructors, property access, invalid dimensions, invalid sample times, descriptor signatures, and gpuArray gathering.",
|
|
117
|
+
"implementation": {
|
|
118
|
+
"label": "`crates/runmat-runtime/src/builtins/control/ss.rs`",
|
|
119
|
+
"url": "https://github.com/runmat-org/runmat/blob/main/crates/runmat-runtime/src/builtins/control/ss.rs"
|
|
120
|
+
}
|
|
121
|
+
},
|
|
122
|
+
"gpu_residency": "`ss` is a host-side object constructor. gpuArray matrix inputs are gathered before object construction, and the returned state-space object does not live on the GPU.",
|
|
123
|
+
"key": "ss",
|
|
124
|
+
"slug": "ss",
|
|
125
|
+
"aliases": [],
|
|
126
|
+
"categoryPath": [
|
|
127
|
+
"control"
|
|
128
|
+
]
|
|
129
|
+
};
|
|
130
|
+
export default builtinDoc;
|
|
131
|
+
//# sourceMappingURL=ss.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ss.js","sourceRoot":"","sources":["../../../src/generated/builtins/ss.ts"],"names":[],"mappings":"AAAA,8CAA8C;AAC9C,uBAAuB;AAIvB,MAAM,UAAU,GAAe;IAC7B,OAAO,EAAE,IAAI;IACb,UAAU,EAAE,SAAS;IACrB,UAAU,EAAE;QACV,IAAI;QACJ,aAAa;QACb,gBAAgB;QAChB,cAAc;QACd,aAAa;KACd;IACD,SAAS,EAAE,iEAAiE;IAC5E,YAAY,EAAE,EAAE;IAChB,aAAa,EAAE;QACb,aAAa,EAAE,KAAK;QACpB,WAAW,EAAE,KAAK;QAClB,YAAY,EAAE,EAAE;QAChB,cAAc,EAAE,MAAM;QACtB,OAAO,EAAE,qJAAqJ;KAC/J;IACD,QAAQ,EAAE;QACR,aAAa,EAAE,KAAK;QACpB,WAAW,EAAE,KAAK;QAClB,YAAY,EAAE,CAAC;QACf,WAAW,EAAE,QAAQ;QACrB,OAAO,EAAE,sDAAsD;KAChE;IACD,kBAAkB,EAAE,IAAI;IACxB,QAAQ,EAAE;QACR,MAAM,EAAE,8BAA8B;QACtC,aAAa,EAAE,mCAAmC;KACnD;IACD,aAAa,EAAE,mNAAmN;IAClO,WAAW,EAAE;QACX,6CAA6C;QAC7C,sHAAsH;QACtH,iEAAiE;QACjE,uDAAuD;QACvD,gEAAgE;QAChE,4GAA4G;QAC5G,0HAA0H;QAC1H,mIAAmI;KACpI;IACD,UAAU,EAAE;QACV;YACE,aAAa,EAAE,8CAA8C;YAC7D,OAAO,EAAE,mFAAmF;YAC5F,QAAQ,EAAE,cAAc;SACzB;QACD;YACE,aAAa,EAAE,qCAAqC;YACpD,OAAO,EAAE,yIAAyI;YAClJ,QAAQ,EAAE,eAAe;SAC1B;QACD;YACE,aAAa,EAAE,gCAAgC;YAC/C,OAAO,EAAE,yDAAyD;YAClE,QAAQ,EAAE,KAAK;SAChB;QACD;YACE,aAAa,EAAE,+CAA+C;YAC9D,OAAO,EAAE,uEAAuE;YAChF,QAAQ,EAAE,KAAK;SAChB;KACF;IACD,MAAM,EAAE;QACN;YACE,UAAU,EAAE,+CAA+C;YAC3D,QAAQ,EAAE,uGAAuG;SAClH;QACD;YACE,UAAU,EAAE,8CAA8C;YAC1D,QAAQ,EAAE,wEAAwE;SACnF;QACD;YACE,UAAU,EAAE,+BAA+B;YAC3C,QAAQ,EAAE,yFAAyF;SACpG;QACD;YACE,UAAU,EAAE,kEAAkE;YAC9E,QAAQ,EAAE,kFAAkF;SAC7F;KACF;IACD,OAAO,EAAE;QACP;YACE,OAAO,EAAE,IAAI;YACb,KAAK,EAAE,MAAM;SACd;QACD;YACE,OAAO,EAAE,MAAM;YACf,KAAK,EAAE,QAAQ;SAChB;QACD;YACE,OAAO,EAAE,SAAS;YAClB,KAAK,EAAE,WAAW;SACnB;KACF;IACD,QAAQ,EAAE;QACR,OAAO,EAAE,oDAAoD;QAC7D,KAAK,EAAE,iGAAiG;KACzG;IACD,QAAQ,EAAE;QACR,SAAS,EAAE;YACT,aAAa,EAAE,iBAAiB;YAChC,OAAO,EAAE,gHAAgH;YACzH,QAAQ,EAAE,oBAAoB;SAC/B;QACD,QAAQ,EAAE;YACR,+EAA+E;YAC/E,4DAA4D;YAC5D,0FAA0F;SAC3F;KACF;IACD,YAAY,EAAE;QACZ,SAAS,EAAE,mWAAmW;QAC9W,gBAAgB,EAAE;YAChB,OAAO,EAAE,oDAAoD;YAC7D,KAAK,EAAE,iGAAiG;SACzG;KACF;IACD,eAAe,EAAE,uKAAuK;IACxL,KAAK,EAAE,IAAI;IACX,MAAM,EAAE,IAAI;IACZ,SAAS,EAAE,EAAE;IACb,cAAc,EAAE;QACd,SAAS;KACV;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,
|
|
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,EA02QjD,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,MAAM,CAAC,MAAM,EAAE,gBAAgB,CAwa9D,CAAC;AAEF,eAAO,MAAM,4BAA4B,sEAC0C,CAAC"}
|
|
@@ -6598,6 +6598,28 @@ export const builtinManifest = [
|
|
|
6598
6598
|
"summary": "Create 3-D scatter plots for spatial point clouds, encoded markers, and MATLAB `scatter3` workflows.",
|
|
6599
6599
|
"exampleCount": 4
|
|
6600
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
|
+
},
|
|
6601
6623
|
{
|
|
6602
6624
|
"key": "second",
|
|
6603
6625
|
"title": "second",
|
|
@@ -7074,6 +7096,25 @@ export const builtinManifest = [
|
|
|
7074
7096
|
"summary": "Remove singleton (size-one) dimensions while preserving MATLAB vector semantics.",
|
|
7075
7097
|
"exampleCount": 6
|
|
7076
7098
|
},
|
|
7099
|
+
{
|
|
7100
|
+
"key": "ss",
|
|
7101
|
+
"title": "ss",
|
|
7102
|
+
"slug": "ss",
|
|
7103
|
+
"aliases": [],
|
|
7104
|
+
"category": "control",
|
|
7105
|
+
"categoryPath": [
|
|
7106
|
+
"control"
|
|
7107
|
+
],
|
|
7108
|
+
"keywords": [
|
|
7109
|
+
"ss",
|
|
7110
|
+
"state space",
|
|
7111
|
+
"control system",
|
|
7112
|
+
"state matrix",
|
|
7113
|
+
"sample time"
|
|
7114
|
+
],
|
|
7115
|
+
"summary": "Create a state-space model object from A, B, C, and D matrices.",
|
|
7116
|
+
"exampleCount": 4
|
|
7117
|
+
},
|
|
7077
7118
|
{
|
|
7078
7119
|
"key": "stairs",
|
|
7079
7120
|
"title": "stairs",
|
|
@@ -8840,6 +8881,7 @@ export const builtinDocLoaders = {
|
|
|
8840
8881
|
"sawtooth": () => import("./builtins/sawtooth.js").then((mod) => mod.default),
|
|
8841
8882
|
"scatter": () => import("./builtins/scatter.js").then((mod) => mod.default),
|
|
8842
8883
|
"scatter3": () => import("./builtins/scatter3.js").then((mod) => mod.default),
|
|
8884
|
+
"scatterplot": () => import("./builtins/scatterplot.js").then((mod) => mod.default),
|
|
8843
8885
|
"second": () => import("./builtins/second.js").then((mod) => mod.default),
|
|
8844
8886
|
"semilogx": () => import("./builtins/semilogx.js").then((mod) => mod.default),
|
|
8845
8887
|
"semilogy": () => import("./builtins/semilogy.js").then((mod) => mod.default),
|
|
@@ -8864,6 +8906,7 @@ export const builtinDocLoaders = {
|
|
|
8864
8906
|
"sqrt": () => import("./builtins/sqrt.js").then((mod) => mod.default),
|
|
8865
8907
|
"square": () => import("./builtins/square.js").then((mod) => mod.default),
|
|
8866
8908
|
"squeeze": () => import("./builtins/squeeze.js").then((mod) => mod.default),
|
|
8909
|
+
"ss": () => import("./builtins/ss.js").then((mod) => mod.default),
|
|
8867
8910
|
"stairs": () => import("./builtins/stairs.js").then((mod) => mod.default),
|
|
8868
8911
|
"startswith": () => import("./builtins/startsWith.js").then((mod) => mod.default),
|
|
8869
8912
|
"std": () => import("./builtins/std.js").then((mod) => mod.default),
|