runmat 0.4.6-dev.2 → 0.4.6-dev.3
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/clearvars.d.ts +4 -0
- package/dist/generated/builtins/clearvars.d.ts.map +1 -0
- package/dist/generated/builtins/clearvars.js +119 -0
- package/dist/generated/builtins/clearvars.js.map +1 -0
- package/dist/generated/builtins/heatmap.d.ts +4 -0
- package/dist/generated/builtins/heatmap.d.ts.map +1 -0
- package/dist/generated/builtins/heatmap.js +87 -0
- package/dist/generated/builtins/heatmap.js.map +1 -0
- package/dist/generated/builtins-manifest.d.ts.map +1 -1
- package/dist/generated/builtins-manifest.js +40 -0
- package/dist/generated/builtins-manifest.js.map +1 -1
- package/dist/lsp/runmat_lsp.d.ts +2 -2
- package/dist/lsp/runmat_lsp.js +4 -4
- package/dist/lsp/runmat_lsp_bg.wasm +0 -0
- package/dist/lsp/runmat_lsp_bg.wasm.d.ts +2 -2
- package/dist/pkg-web/runmat_wasm_web.d.ts +4 -4
- package/dist/pkg-web/runmat_wasm_web.js +10 -10
- package/dist/pkg-web/runmat_wasm_web_bg.wasm +0 -0
- package/dist/pkg-web/runmat_wasm_web_bg.wasm.d.ts +4 -4
- package/dist/runtime/stdlib.snapshot +0 -0
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"clearvars.d.ts","sourceRoot":"","sources":["../../../src/generated/builtins/clearvars.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAEpD,QAAA,MAAM,UAAU,EAAE,UAkHjB,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
// @generated by scripts/generate-builtins.cjs
|
|
2
|
+
// Do not edit by hand.
|
|
3
|
+
const builtinDoc = {
|
|
4
|
+
"title": "clearvars",
|
|
5
|
+
"category": "introspection",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"clearvars",
|
|
8
|
+
"clear variables",
|
|
9
|
+
"workspace",
|
|
10
|
+
"variables",
|
|
11
|
+
"-except"
|
|
12
|
+
],
|
|
13
|
+
"summary": "Clear variables from the active workspace, with optional exclusions.",
|
|
14
|
+
"references": [
|
|
15
|
+
"https://www.mathworks.com/help/matlab/ref/clearvars.html"
|
|
16
|
+
],
|
|
17
|
+
"gpu_support": {
|
|
18
|
+
"elementwise": false,
|
|
19
|
+
"reduction": false,
|
|
20
|
+
"precisions": [],
|
|
21
|
+
"broadcasting": "none",
|
|
22
|
+
"notes": "Runs on the host CPU because it mutates the session workspace rather than array contents."
|
|
23
|
+
},
|
|
24
|
+
"fusion": {
|
|
25
|
+
"elementwise": false,
|
|
26
|
+
"reduction": false,
|
|
27
|
+
"max_inputs": 16,
|
|
28
|
+
"constants": "inline"
|
|
29
|
+
},
|
|
30
|
+
"requires_feature": null,
|
|
31
|
+
"tested": {
|
|
32
|
+
"unit": null,
|
|
33
|
+
"integration": "command_controls::clearvars_command_clears_workspace_state"
|
|
34
|
+
},
|
|
35
|
+
"description": "`clearvars` removes variables from the active RunMat workspace. RunMat supports MATLAB-style command forms such as `clearvars x y`, whole-workspace exclusion forms such as `clearvars -except keep`, and selected-variable exclusion forms such as `clearvars a b -except b`, updating the session snapshot so hosts can drop cleared bindings.",
|
|
36
|
+
"behaviors": [
|
|
37
|
+
"`clearvars` with no inputs clears all workspace variables created in the current session.",
|
|
38
|
+
"`clearvars x` removes the variable `x` while leaving other workspace bindings intact.",
|
|
39
|
+
"Multiple names can be supplied as separate inputs or command-form tokens, for example `clearvars x y z`.",
|
|
40
|
+
"`clearvars -except x y` removes all active workspace variables except `x` and `y`.",
|
|
41
|
+
"`clearvars a b c -except b` removes only selected variables `a` and `c`, preserves selected exclusion `b`, and leaves variables outside the selected clear set untouched.",
|
|
42
|
+
"Function-call forms accept variable names as string scalars, row character vectors, or string arrays.",
|
|
43
|
+
"Clearing a name that does not exist is a no-op.",
|
|
44
|
+
"`clearvars` is a sink builtin and does not produce a meaningful output value."
|
|
45
|
+
],
|
|
46
|
+
"examples": [
|
|
47
|
+
{
|
|
48
|
+
"description": "Clear the entire interactive workspace",
|
|
49
|
+
"input": "x = 1;\ny = magic(3);\nclearvars",
|
|
50
|
+
"output": "% x and y are removed from the workspace"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"description": "Clear selected variables",
|
|
54
|
+
"input": "a = 1;\nb = 2;\nc = 3;\nclearvars a b",
|
|
55
|
+
"output": "% a and b are removed; c remains defined"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"description": "Keep selected variables while clearing the rest",
|
|
59
|
+
"input": "raw = 1;\nanswer = 42;\ntmp = 3;\nclearvars -except answer",
|
|
60
|
+
"output": "% answer remains defined; raw and tmp are removed"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"description": "Clear selected variables while preserving exclusions",
|
|
64
|
+
"input": "a = 1;\nb = 2;\nc = 3;\nuntouched = 4;\nclearvars a b c -except b",
|
|
65
|
+
"output": "% a and c are removed; b and untouched remain defined"
|
|
66
|
+
}
|
|
67
|
+
],
|
|
68
|
+
"faqs": [
|
|
69
|
+
{
|
|
70
|
+
"question": "How is `clearvars` different from `clear`?",
|
|
71
|
+
"answer": "`clearvars` focuses on workspace variables and supports the `-except` option for preserving named bindings while clearing the rest."
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"question": "Can I clear only one variable?",
|
|
75
|
+
"answer": "Yes. Use `clearvars x` or `clearvars(\"x\")` to remove one variable, and pass multiple names to clear more than one binding in a single call."
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"question": "Does `clearvars -except x` clear figures or the console?",
|
|
79
|
+
"answer": "No. It only mutates workspace variables. Use `close all` for figures and `clc` for the visible console."
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"question": "Does GPU residency matter?",
|
|
83
|
+
"answer": "No. `clearvars` operates on session bookkeeping, not on array kernels or provider-managed computations."
|
|
84
|
+
}
|
|
85
|
+
],
|
|
86
|
+
"links": [
|
|
87
|
+
{
|
|
88
|
+
"label": "clear",
|
|
89
|
+
"url": "./clear"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"label": "who",
|
|
93
|
+
"url": "./who"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"label": "whos",
|
|
97
|
+
"url": "./whos"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"label": "clc",
|
|
101
|
+
"url": "./clc"
|
|
102
|
+
}
|
|
103
|
+
],
|
|
104
|
+
"source": {
|
|
105
|
+
"label": "`crates/runmat-runtime/src/builtins/introspection/clearvars.rs`",
|
|
106
|
+
"url": "https://github.com/runmat-org/runmat/blob/main/crates/runmat-runtime/src/builtins/introspection/clearvars.rs"
|
|
107
|
+
},
|
|
108
|
+
"gpu_behavior": [
|
|
109
|
+
"`clearvars` performs host-side workspace mutation only. It does not launch GPU kernels, does not participate in fusion, and does not depend on acceleration providers."
|
|
110
|
+
],
|
|
111
|
+
"key": "clearvars",
|
|
112
|
+
"slug": "clearvars",
|
|
113
|
+
"aliases": [],
|
|
114
|
+
"categoryPath": [
|
|
115
|
+
"introspection"
|
|
116
|
+
]
|
|
117
|
+
};
|
|
118
|
+
export default builtinDoc;
|
|
119
|
+
//# sourceMappingURL=clearvars.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"clearvars.js","sourceRoot":"","sources":["../../../src/generated/builtins/clearvars.ts"],"names":[],"mappings":"AAAA,8CAA8C;AAC9C,uBAAuB;AAIvB,MAAM,UAAU,GAAe;IAC7B,OAAO,EAAE,WAAW;IACpB,UAAU,EAAE,eAAe;IAC3B,UAAU,EAAE;QACV,WAAW;QACX,iBAAiB;QACjB,WAAW;QACX,WAAW;QACX,SAAS;KACV;IACD,SAAS,EAAE,sEAAsE;IACjF,YAAY,EAAE;QACZ,0DAA0D;KAC3D;IACD,aAAa,EAAE;QACb,aAAa,EAAE,KAAK;QACpB,WAAW,EAAE,KAAK;QAClB,YAAY,EAAE,EAAE;QAChB,cAAc,EAAE,MAAM;QACtB,OAAO,EAAE,2FAA2F;KACrG;IACD,QAAQ,EAAE;QACR,aAAa,EAAE,KAAK;QACpB,WAAW,EAAE,KAAK;QAClB,YAAY,EAAE,EAAE;QAChB,WAAW,EAAE,QAAQ;KACtB;IACD,kBAAkB,EAAE,IAAI;IACxB,QAAQ,EAAE;QACR,MAAM,EAAE,IAAI;QACZ,aAAa,EAAE,4DAA4D;KAC5E;IACD,aAAa,EAAE,kVAAkV;IACjW,WAAW,EAAE;QACX,2FAA2F;QAC3F,uFAAuF;QACvF,0GAA0G;QAC1G,oFAAoF;QACpF,2KAA2K;QAC3K,uGAAuG;QACvG,iDAAiD;QACjD,+EAA+E;KAChF;IACD,UAAU,EAAE;QACV;YACE,aAAa,EAAE,wCAAwC;YACvD,OAAO,EAAE,kCAAkC;YAC3C,QAAQ,EAAE,0CAA0C;SACrD;QACD;YACE,aAAa,EAAE,0BAA0B;YACzC,OAAO,EAAE,uCAAuC;YAChD,QAAQ,EAAE,0CAA0C;SACrD;QACD;YACE,aAAa,EAAE,iDAAiD;YAChE,OAAO,EAAE,4DAA4D;YACrE,QAAQ,EAAE,mDAAmD;SAC9D;QACD;YACE,aAAa,EAAE,sDAAsD;YACrE,OAAO,EAAE,mEAAmE;YAC5E,QAAQ,EAAE,uDAAuD;SAClE;KACF;IACD,MAAM,EAAE;QACN;YACE,UAAU,EAAE,4CAA4C;YACxD,QAAQ,EAAE,qIAAqI;SAChJ;QACD;YACE,UAAU,EAAE,gCAAgC;YAC5C,QAAQ,EAAE,+IAA+I;SAC1J;QACD;YACE,UAAU,EAAE,0DAA0D;YACtE,QAAQ,EAAE,yGAAyG;SACpH;QACD;YACE,UAAU,EAAE,4BAA4B;YACxC,QAAQ,EAAE,yGAAyG;SACpH;KACF;IACD,OAAO,EAAE;QACP;YACE,OAAO,EAAE,OAAO;YAChB,KAAK,EAAE,SAAS;SACjB;QACD;YACE,OAAO,EAAE,KAAK;YACd,KAAK,EAAE,OAAO;SACf;QACD;YACE,OAAO,EAAE,MAAM;YACf,KAAK,EAAE,QAAQ;SAChB;QACD;YACE,OAAO,EAAE,KAAK;YACd,KAAK,EAAE,OAAO;SACf;KACF;IACD,QAAQ,EAAE;QACR,OAAO,EAAE,iEAAiE;QAC1E,KAAK,EAAE,8GAA8G;KACtH;IACD,cAAc,EAAE;QACd,wKAAwK;KACzK;IACD,KAAK,EAAE,WAAW;IAClB,MAAM,EAAE,WAAW;IACnB,SAAS,EAAE,EAAE;IACb,cAAc,EAAE;QACd,eAAe;KAChB;CACF,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"heatmap.d.ts","sourceRoot":"","sources":["../../../src/generated/builtins/heatmap.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAEpD,QAAA,MAAM,UAAU,EAAE,UAkFjB,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
// @generated by scripts/generate-builtins.cjs
|
|
2
|
+
// Do not edit by hand.
|
|
3
|
+
const builtinDoc = {
|
|
4
|
+
"title": "heatmap",
|
|
5
|
+
"category": "plotting",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"heatmap",
|
|
8
|
+
"HeatmapChart",
|
|
9
|
+
"matrix visualization",
|
|
10
|
+
"colormap",
|
|
11
|
+
"plotting"
|
|
12
|
+
],
|
|
13
|
+
"summary": "Create heatmap charts from matrix data with optional row and column labels.",
|
|
14
|
+
"gpu_support": {
|
|
15
|
+
"elementwise": false,
|
|
16
|
+
"reduction": false,
|
|
17
|
+
"precisions": [
|
|
18
|
+
"single",
|
|
19
|
+
"double"
|
|
20
|
+
],
|
|
21
|
+
"broadcasting": "none",
|
|
22
|
+
"notes": "`heatmap` is a plotting sink. Inputs are gathered to build labeled chart state, then rendered through the scaled-image surface path."
|
|
23
|
+
},
|
|
24
|
+
"fusion": {
|
|
25
|
+
"elementwise": false,
|
|
26
|
+
"reduction": false,
|
|
27
|
+
"max_inputs": 3,
|
|
28
|
+
"constants": "inline"
|
|
29
|
+
},
|
|
30
|
+
"requires_feature": null,
|
|
31
|
+
"tested": {
|
|
32
|
+
"unit": "builtins::plotting::heatmap::tests"
|
|
33
|
+
},
|
|
34
|
+
"description": "`heatmap` creates a heatmap-style chart from numeric matrix data. RunMat supports `heatmap(CData)` and `heatmap(XValues, YValues, CData)`, returns a heatmap graphics handle, and supports common chart properties such as `Title`, `XLabel`, `YLabel`, `ColorbarVisible`, and `Colormap` through `get`, `set`, and dot-property assignment.",
|
|
35
|
+
"behaviors": [
|
|
36
|
+
"`heatmap(CData)` displays matrix values using default row and column labels.",
|
|
37
|
+
"`heatmap(XValues, YValues, CData)` uses text, string-array, cell-array, or numeric labels for the displayed columns and rows.",
|
|
38
|
+
"The returned heatmap handle participates in RunMat's plotting property system.",
|
|
39
|
+
"Color rendering uses the shared scaled-image and colormap path."
|
|
40
|
+
],
|
|
41
|
+
"examples": [
|
|
42
|
+
{
|
|
43
|
+
"description": "Create a labeled heatmap chart",
|
|
44
|
+
"input": "cdata = [45 60 32; 43 54 76; 32 94 68; 23 95 58];\nxvalues = {'Small','Medium','Large'};\nyvalues = {'Green','Red','Blue','Gray'};\nh = heatmap(xvalues,yvalues,cdata);\nh.Title = 'T-Shirt Orders';\nh.XLabel = 'Sizes';\nh.YLabel = 'Colors';"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"description": "Create a heatmap from matrix data",
|
|
48
|
+
"input": "A = magic(5);\nh = heatmap(A);\nh.Colormap = 'hot';\nh.ColorbarVisible = true;"
|
|
49
|
+
}
|
|
50
|
+
],
|
|
51
|
+
"faqs": [
|
|
52
|
+
{
|
|
53
|
+
"question": "Does heatmap support table inputs?",
|
|
54
|
+
"answer": "Not yet. RunMat currently supports matrix CData inputs with optional row and column labels. Table-based MATLAB signatures will be added once table values are represented in the runtime."
|
|
55
|
+
}
|
|
56
|
+
],
|
|
57
|
+
"links": [
|
|
58
|
+
{
|
|
59
|
+
"label": "imagesc",
|
|
60
|
+
"url": "./imagesc"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"label": "colormap",
|
|
64
|
+
"url": "./colormap"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"label": "colorbar",
|
|
68
|
+
"url": "./colorbar"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"label": "Styling plots and axes",
|
|
72
|
+
"url": "/docs/plotting/styling-plots-and-axes"
|
|
73
|
+
}
|
|
74
|
+
],
|
|
75
|
+
"source": {
|
|
76
|
+
"label": "`crates/runmat-runtime/src/builtins/plotting/ops/heatmap.rs`",
|
|
77
|
+
"url": "https://github.com/runmat-org/runmat/blob/main/crates/runmat-runtime/src/builtins/plotting/ops/heatmap.rs"
|
|
78
|
+
},
|
|
79
|
+
"key": "heatmap",
|
|
80
|
+
"slug": "heatmap",
|
|
81
|
+
"aliases": [],
|
|
82
|
+
"categoryPath": [
|
|
83
|
+
"plotting"
|
|
84
|
+
]
|
|
85
|
+
};
|
|
86
|
+
export default builtinDoc;
|
|
87
|
+
//# sourceMappingURL=heatmap.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"heatmap.js","sourceRoot":"","sources":["../../../src/generated/builtins/heatmap.ts"],"names":[],"mappings":"AAAA,8CAA8C;AAC9C,uBAAuB;AAIvB,MAAM,UAAU,GAAe;IAC7B,OAAO,EAAE,SAAS;IAClB,UAAU,EAAE,UAAU;IACtB,UAAU,EAAE;QACV,SAAS;QACT,cAAc;QACd,sBAAsB;QACtB,UAAU;QACV,UAAU;KACX;IACD,SAAS,EAAE,6EAA6E;IACxF,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,sIAAsI;KAChJ;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,oCAAoC;KAC7C;IACD,aAAa,EAAE,8UAA8U;IAC7V,WAAW,EAAE;QACX,8EAA8E;QAC9E,+HAA+H;QAC/H,gFAAgF;QAChF,iEAAiE;KAClE;IACD,UAAU,EAAE;QACV;YACE,aAAa,EAAE,gCAAgC;YAC/C,OAAO,EAAE,iPAAiP;SAC3P;QACD;YACE,aAAa,EAAE,mCAAmC;YAClD,OAAO,EAAE,gFAAgF;SAC1F;KACF;IACD,MAAM,EAAE;QACN;YACE,UAAU,EAAE,oCAAoC;YAChD,QAAQ,EAAE,2LAA2L;SACtM;KACF;IACD,OAAO,EAAE;QACP;YACE,OAAO,EAAE,SAAS;YAClB,KAAK,EAAE,WAAW;SACnB;QACD;YACE,OAAO,EAAE,UAAU;YACnB,KAAK,EAAE,YAAY;SACpB;QACD;YACE,OAAO,EAAE,UAAU;YACnB,KAAK,EAAE,YAAY;SACpB;QACD;YACE,OAAO,EAAE,wBAAwB;YACjC,KAAK,EAAE,uCAAuC;SAC/C;KACF;IACD,QAAQ,EAAE;QACR,OAAO,EAAE,8DAA8D;QACvE,KAAK,EAAE,2GAA2G;KACnH;IACD,KAAK,EAAE,SAAS;IAChB,MAAM,EAAE,SAAS;IACjB,SAAS,EAAE,EAAE;IACb,cAAc,EAAE;QACd,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,
|
|
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,EAkyPjD,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,MAAM,CAAC,MAAM,EAAE,gBAAgB,CA2Y9D,CAAC;AAEF,eAAO,MAAM,4BAA4B,sEAC0C,CAAC"}
|
|
@@ -743,6 +743,25 @@ export const builtinManifest = [
|
|
|
743
743
|
"summary": "Clear variables from the active workspace.",
|
|
744
744
|
"exampleCount": 5
|
|
745
745
|
},
|
|
746
|
+
{
|
|
747
|
+
"key": "clearvars",
|
|
748
|
+
"title": "clearvars",
|
|
749
|
+
"slug": "clearvars",
|
|
750
|
+
"aliases": [],
|
|
751
|
+
"category": "introspection",
|
|
752
|
+
"categoryPath": [
|
|
753
|
+
"introspection"
|
|
754
|
+
],
|
|
755
|
+
"keywords": [
|
|
756
|
+
"clearvars",
|
|
757
|
+
"clear variables",
|
|
758
|
+
"workspace",
|
|
759
|
+
"variables",
|
|
760
|
+
"-except"
|
|
761
|
+
],
|
|
762
|
+
"summary": "Clear variables from the active workspace, with optional exclusions.",
|
|
763
|
+
"exampleCount": 4
|
|
764
|
+
},
|
|
746
765
|
{
|
|
747
766
|
"key": "clf",
|
|
748
767
|
"title": "clf",
|
|
@@ -2858,6 +2877,25 @@ export const builtinManifest = [
|
|
|
2858
2877
|
"summary": "Generate a Hann window as an N-by-1 real column vector.",
|
|
2859
2878
|
"exampleCount": 3
|
|
2860
2879
|
},
|
|
2880
|
+
{
|
|
2881
|
+
"key": "heatmap",
|
|
2882
|
+
"title": "heatmap",
|
|
2883
|
+
"slug": "heatmap",
|
|
2884
|
+
"aliases": [],
|
|
2885
|
+
"category": "plotting",
|
|
2886
|
+
"categoryPath": [
|
|
2887
|
+
"plotting"
|
|
2888
|
+
],
|
|
2889
|
+
"keywords": [
|
|
2890
|
+
"heatmap",
|
|
2891
|
+
"HeatmapChart",
|
|
2892
|
+
"matrix visualization",
|
|
2893
|
+
"colormap",
|
|
2894
|
+
"plotting"
|
|
2895
|
+
],
|
|
2896
|
+
"summary": "Create heatmap charts from matrix data with optional row and column labels.",
|
|
2897
|
+
"exampleCount": 2
|
|
2898
|
+
},
|
|
2861
2899
|
{
|
|
2862
2900
|
"key": "hist",
|
|
2863
2901
|
"title": "hist",
|
|
@@ -7971,6 +8009,7 @@ export const builtinDocLoaders = {
|
|
|
7971
8009
|
"class": () => import("./builtins/class.js").then((mod) => mod.default),
|
|
7972
8010
|
"clc": () => import("./builtins/clc.js").then((mod) => mod.default),
|
|
7973
8011
|
"clear": () => import("./builtins/clear.js").then((mod) => mod.default),
|
|
8012
|
+
"clearvars": () => import("./builtins/clearvars.js").then((mod) => mod.default),
|
|
7974
8013
|
"clf": () => import("./builtins/clf.js").then((mod) => mod.default),
|
|
7975
8014
|
"close": () => import("./builtins/close.js").then((mod) => mod.default),
|
|
7976
8015
|
"colon": () => import("./builtins/colon.js").then((mod) => mod.default),
|
|
@@ -8075,6 +8114,7 @@ export const builtinDocLoaders = {
|
|
|
8075
8114
|
"gt": () => import("./builtins/gt.js").then((mod) => mod.default),
|
|
8076
8115
|
"hamming": () => import("./builtins/hamming.js").then((mod) => mod.default),
|
|
8077
8116
|
"hann": () => import("./builtins/hann.js").then((mod) => mod.default),
|
|
8117
|
+
"heatmap": () => import("./builtins/heatmap.js").then((mod) => mod.default),
|
|
8078
8118
|
"hist": () => import("./builtins/hist.js").then((mod) => mod.default),
|
|
8079
8119
|
"histcounts": () => import("./builtins/histcounts.js").then((mod) => mod.default),
|
|
8080
8120
|
"histcounts2": () => import("./builtins/histcounts2.js").then((mod) => mod.default),
|