runmat 0.4.5-dev.2 → 0.4.5-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/interp1.d.ts +4 -0
- package/dist/generated/builtins/interp1.d.ts.map +1 -0
- package/dist/generated/builtins/interp1.js +90 -0
- package/dist/generated/builtins/interp1.js.map +1 -0
- package/dist/generated/builtins/interp2.d.ts +4 -0
- package/dist/generated/builtins/interp2.d.ts.map +1 -0
- package/dist/generated/builtins/interp2.js +88 -0
- package/dist/generated/builtins/interp2.js.map +1 -0
- package/dist/generated/builtins/pchip.d.ts +4 -0
- package/dist/generated/builtins/pchip.d.ts.map +1 -0
- package/dist/generated/builtins/pchip.js +78 -0
- package/dist/generated/builtins/pchip.js.map +1 -0
- package/dist/generated/builtins/ppval.d.ts +4 -0
- package/dist/generated/builtins/ppval.d.ts.map +1 -0
- package/dist/generated/builtins/ppval.js +77 -0
- package/dist/generated/builtins/ppval.js.map +1 -0
- package/dist/generated/builtins/spline.d.ts +4 -0
- package/dist/generated/builtins/spline.d.ts.map +1 -0
- package/dist/generated/builtins/spline.js +84 -0
- package/dist/generated/builtins/spline.js.map +1 -0
- package/dist/generated/builtins-manifest.d.ts.map +1 -1
- package/dist/generated/builtins-manifest.js +104 -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 +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":"interp1.d.ts","sourceRoot":"","sources":["../../../src/generated/builtins/interp1.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAEpD,QAAA,MAAM,UAAU,EAAE,UAqFjB,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
// @generated by scripts/generate-builtins.cjs
|
|
2
|
+
// Do not edit by hand.
|
|
3
|
+
const builtinDoc = {
|
|
4
|
+
"title": "interp1",
|
|
5
|
+
"category": "math/interpolation",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"interp1",
|
|
8
|
+
"interpolation",
|
|
9
|
+
"linear",
|
|
10
|
+
"nearest",
|
|
11
|
+
"spline",
|
|
12
|
+
"pchip"
|
|
13
|
+
],
|
|
14
|
+
"summary": "Interpolate one-dimensional sampled data at query points.",
|
|
15
|
+
"gpu_support": {
|
|
16
|
+
"elementwise": false,
|
|
17
|
+
"reduction": false,
|
|
18
|
+
"precisions": [
|
|
19
|
+
"f32",
|
|
20
|
+
"f64"
|
|
21
|
+
],
|
|
22
|
+
"broadcasting": "matlab",
|
|
23
|
+
"notes": "GPU inputs are gathered to the CPU reference implementation in this release. Linear and nearest interpolation are good future provider-kernel candidates."
|
|
24
|
+
},
|
|
25
|
+
"fusion": {
|
|
26
|
+
"elementwise": false,
|
|
27
|
+
"reduction": false,
|
|
28
|
+
"max_inputs": 3,
|
|
29
|
+
"constants": "inline"
|
|
30
|
+
},
|
|
31
|
+
"description": "`interp1(x, y, xq)` estimates values of a one-dimensional data set at query points `xq`. The default method is linear interpolation; `nearest`, `spline`, and `pchip` are also accepted.",
|
|
32
|
+
"behaviors": [
|
|
33
|
+
"`interp1(y, xq)` uses implicit sample points `1:numel(y)`.",
|
|
34
|
+
"`interp1(x, y, xq, method)` supports `linear`, `nearest`, `spline`, and `pchip`.",
|
|
35
|
+
"Out-of-range query points return `NaN` unless an extrapolation value or `'extrap'` is supplied.",
|
|
36
|
+
"Dense real numeric arrays are supported. GPU inputs gather to the host reference path."
|
|
37
|
+
],
|
|
38
|
+
"examples": [
|
|
39
|
+
{
|
|
40
|
+
"description": "Linear interpolation",
|
|
41
|
+
"input": "x = [1 2 3];\ny = [10 20 40];\nyq = interp1(x, y, [1.5 2.5])",
|
|
42
|
+
"output": "yq = [15 30]"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"description": "Spline interpolation",
|
|
46
|
+
"input": "x = [1 2 3];\ny = [1 4 9];\nyq = interp1(x, y, [1.5 2.5], 'spline')",
|
|
47
|
+
"output": "yq = [2.25 6.25]"
|
|
48
|
+
}
|
|
49
|
+
],
|
|
50
|
+
"syntax": {
|
|
51
|
+
"example": {
|
|
52
|
+
"description": "Syntax",
|
|
53
|
+
"input": "yq = interp1(y, xq)\nyq = interp1(x, y, xq)\nyq = interp1(x, y, xq, method)\nyq = interp1(x, y, xq, method, 'extrap')"
|
|
54
|
+
},
|
|
55
|
+
"points": [
|
|
56
|
+
"`x` is a strictly increasing vector of sample locations. When omitted, RunMat uses `1:numel(y)`.",
|
|
57
|
+
"`y` contains the sampled values. Vector inputs produce vector outputs; matrix inputs are interpolated along the sample dimension.",
|
|
58
|
+
"`xq` contains query points. Scalar queries return scalars, and array queries preserve their shape.",
|
|
59
|
+
"`method` may be `linear`, `nearest`, `spline`, or `pchip`. The default is `linear`.",
|
|
60
|
+
"Out-of-range queries return `NaN` by default. Pass `'extrap'` to extrapolate or pass a scalar fill value."
|
|
61
|
+
]
|
|
62
|
+
},
|
|
63
|
+
"links": [
|
|
64
|
+
{
|
|
65
|
+
"label": "spline",
|
|
66
|
+
"url": "./spline"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"label": "pchip",
|
|
70
|
+
"url": "./pchip"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"label": "interp2",
|
|
74
|
+
"url": "./interp2"
|
|
75
|
+
}
|
|
76
|
+
],
|
|
77
|
+
"source": {
|
|
78
|
+
"label": "Open an issue",
|
|
79
|
+
"url": "https://github.com/runmat-org/runmat/issues/new/choose"
|
|
80
|
+
},
|
|
81
|
+
"key": "interp1",
|
|
82
|
+
"slug": "interp1",
|
|
83
|
+
"aliases": [],
|
|
84
|
+
"categoryPath": [
|
|
85
|
+
"math",
|
|
86
|
+
"interpolation"
|
|
87
|
+
]
|
|
88
|
+
};
|
|
89
|
+
export default builtinDoc;
|
|
90
|
+
//# sourceMappingURL=interp1.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"interp1.js","sourceRoot":"","sources":["../../../src/generated/builtins/interp1.ts"],"names":[],"mappings":"AAAA,8CAA8C;AAC9C,uBAAuB;AAIvB,MAAM,UAAU,GAAe;IAC7B,OAAO,EAAE,SAAS;IAClB,UAAU,EAAE,oBAAoB;IAChC,UAAU,EAAE;QACV,SAAS;QACT,eAAe;QACf,QAAQ;QACR,SAAS;QACT,QAAQ;QACR,OAAO;KACR;IACD,SAAS,EAAE,2DAA2D;IACtE,aAAa,EAAE;QACb,aAAa,EAAE,KAAK;QACpB,WAAW,EAAE,KAAK;QAClB,YAAY,EAAE;YACZ,KAAK;YACL,KAAK;SACN;QACD,cAAc,EAAE,QAAQ;QACxB,OAAO,EAAE,2JAA2J;KACrK;IACD,QAAQ,EAAE;QACR,aAAa,EAAE,KAAK;QACpB,WAAW,EAAE,KAAK;QAClB,YAAY,EAAE,CAAC;QACf,WAAW,EAAE,QAAQ;KACtB;IACD,aAAa,EAAE,0LAA0L;IACzM,WAAW,EAAE;QACX,4DAA4D;QAC5D,kFAAkF;QAClF,iGAAiG;QACjG,wFAAwF;KACzF;IACD,UAAU,EAAE;QACV;YACE,aAAa,EAAE,sBAAsB;YACrC,OAAO,EAAE,8DAA8D;YACvE,QAAQ,EAAE,cAAc;SACzB;QACD;YACE,aAAa,EAAE,sBAAsB;YACrC,OAAO,EAAE,qEAAqE;YAC9E,QAAQ,EAAE,kBAAkB;SAC7B;KACF;IACD,QAAQ,EAAE;QACR,SAAS,EAAE;YACT,aAAa,EAAE,QAAQ;YACvB,OAAO,EAAE,uHAAuH;SACjI;QACD,QAAQ,EAAE;YACR,kGAAkG;YAClG,mIAAmI;YACnI,oGAAoG;YACpG,qFAAqF;YACrF,2GAA2G;SAC5G;KACF;IACD,OAAO,EAAE;QACP;YACE,OAAO,EAAE,QAAQ;YACjB,KAAK,EAAE,UAAU;SAClB;QACD;YACE,OAAO,EAAE,OAAO;YAChB,KAAK,EAAE,SAAS;SACjB;QACD;YACE,OAAO,EAAE,SAAS;YAClB,KAAK,EAAE,WAAW;SACnB;KACF;IACD,QAAQ,EAAE;QACR,OAAO,EAAE,eAAe;QACxB,KAAK,EAAE,wDAAwD;KAChE;IACD,KAAK,EAAE,SAAS;IAChB,MAAM,EAAE,SAAS;IACjB,SAAS,EAAE,EAAE;IACb,cAAc,EAAE;QACd,MAAM;QACN,eAAe;KAChB;CACF,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"interp2.d.ts","sourceRoot":"","sources":["../../../src/generated/builtins/interp2.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAEpD,QAAA,MAAM,UAAU,EAAE,UAmFjB,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
// @generated by scripts/generate-builtins.cjs
|
|
2
|
+
// Do not edit by hand.
|
|
3
|
+
const builtinDoc = {
|
|
4
|
+
"title": "interp2",
|
|
5
|
+
"category": "math/interpolation",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"interp2",
|
|
8
|
+
"2-D interpolation",
|
|
9
|
+
"bilinear",
|
|
10
|
+
"nearest",
|
|
11
|
+
"meshgrid"
|
|
12
|
+
],
|
|
13
|
+
"summary": "Interpolate values over a two-dimensional gridded surface.",
|
|
14
|
+
"gpu_support": {
|
|
15
|
+
"elementwise": false,
|
|
16
|
+
"reduction": false,
|
|
17
|
+
"precisions": [
|
|
18
|
+
"f32",
|
|
19
|
+
"f64"
|
|
20
|
+
],
|
|
21
|
+
"broadcasting": "matlab",
|
|
22
|
+
"notes": "GPU inputs are gathered to the CPU reference implementation in this release. Bilinear and nearest interpolation are intended future provider-kernel targets."
|
|
23
|
+
},
|
|
24
|
+
"fusion": {
|
|
25
|
+
"elementwise": false,
|
|
26
|
+
"reduction": false,
|
|
27
|
+
"max_inputs": 5,
|
|
28
|
+
"constants": "inline"
|
|
29
|
+
},
|
|
30
|
+
"description": "`interp2(X, Y, Z, Xq, Yq)` estimates surface values at query points from gridded data. Vector axes and meshgrid-style coordinate matrices are accepted. `interp2(Z, Xq, Yq)` uses implicit axes based on the rows and columns of `Z`.",
|
|
31
|
+
"behaviors": [
|
|
32
|
+
"Supports `linear` and `nearest` methods in the initial implementation.",
|
|
33
|
+
"Out-of-range query points return `NaN` unless an extrapolation value or `'extrap'` is supplied.",
|
|
34
|
+
"Dense real numeric inputs are supported. GPU inputs gather to the host reference path."
|
|
35
|
+
],
|
|
36
|
+
"examples": [
|
|
37
|
+
{
|
|
38
|
+
"description": "Bilinear interpolation with implicit axes",
|
|
39
|
+
"input": "Z = [1 2; 3 4];\nzq = interp2(Z, 1.5, 1.5)",
|
|
40
|
+
"output": "zq = 2.5"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"description": "Interpolation with meshgrid axes",
|
|
44
|
+
"input": "[X, Y] = meshgrid([10 20], [100 200]);\nZ = [1 2; 3 4];\nzq = interp2(X, Y, Z, 15, 150)",
|
|
45
|
+
"output": "zq = 2.5"
|
|
46
|
+
}
|
|
47
|
+
],
|
|
48
|
+
"syntax": {
|
|
49
|
+
"example": {
|
|
50
|
+
"description": "Syntax",
|
|
51
|
+
"input": "Zq = interp2(Z, Xq, Yq)\nZq = interp2(X, Y, Z, Xq, Yq)\nZq = interp2(X, Y, Z, Xq, Yq, method)"
|
|
52
|
+
},
|
|
53
|
+
"points": [
|
|
54
|
+
"`Z` is a dense 2-D matrix of sampled surface values.",
|
|
55
|
+
"`X` and `Y` may be vector axes or meshgrid-style coordinate matrices matching `Z`. When omitted, implicit column and row axes are used.",
|
|
56
|
+
"`Xq` and `Yq` are scalar or same-size query arrays. Scalar queries broadcast against array queries.",
|
|
57
|
+
"`method` may be `linear` or `nearest` in the initial implementation. The default is `linear`.",
|
|
58
|
+
"Out-of-range queries return `NaN` by default. Pass `'extrap'` to extrapolate or pass a scalar fill value."
|
|
59
|
+
]
|
|
60
|
+
},
|
|
61
|
+
"links": [
|
|
62
|
+
{
|
|
63
|
+
"label": "interp1",
|
|
64
|
+
"url": "./interp1"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"label": "meshgrid",
|
|
68
|
+
"url": "./meshgrid"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"label": "peaks",
|
|
72
|
+
"url": "./peaks"
|
|
73
|
+
}
|
|
74
|
+
],
|
|
75
|
+
"source": {
|
|
76
|
+
"label": "Open an issue",
|
|
77
|
+
"url": "https://github.com/runmat-org/runmat/issues/new/choose"
|
|
78
|
+
},
|
|
79
|
+
"key": "interp2",
|
|
80
|
+
"slug": "interp2",
|
|
81
|
+
"aliases": [],
|
|
82
|
+
"categoryPath": [
|
|
83
|
+
"math",
|
|
84
|
+
"interpolation"
|
|
85
|
+
]
|
|
86
|
+
};
|
|
87
|
+
export default builtinDoc;
|
|
88
|
+
//# sourceMappingURL=interp2.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"interp2.js","sourceRoot":"","sources":["../../../src/generated/builtins/interp2.ts"],"names":[],"mappings":"AAAA,8CAA8C;AAC9C,uBAAuB;AAIvB,MAAM,UAAU,GAAe;IAC7B,OAAO,EAAE,SAAS;IAClB,UAAU,EAAE,oBAAoB;IAChC,UAAU,EAAE;QACV,SAAS;QACT,mBAAmB;QACnB,UAAU;QACV,SAAS;QACT,UAAU;KACX;IACD,SAAS,EAAE,4DAA4D;IACvE,aAAa,EAAE;QACb,aAAa,EAAE,KAAK;QACpB,WAAW,EAAE,KAAK;QAClB,YAAY,EAAE;YACZ,KAAK;YACL,KAAK;SACN;QACD,cAAc,EAAE,QAAQ;QACxB,OAAO,EAAE,8JAA8J;KACxK;IACD,QAAQ,EAAE;QACR,aAAa,EAAE,KAAK;QACpB,WAAW,EAAE,KAAK;QAClB,YAAY,EAAE,CAAC;QACf,WAAW,EAAE,QAAQ;KACtB;IACD,aAAa,EAAE,uOAAuO;IACtP,WAAW,EAAE;QACX,wEAAwE;QACxE,iGAAiG;QACjG,wFAAwF;KACzF;IACD,UAAU,EAAE;QACV;YACE,aAAa,EAAE,2CAA2C;YAC1D,OAAO,EAAE,4CAA4C;YACrD,QAAQ,EAAE,UAAU;SACrB;QACD;YACE,aAAa,EAAE,kCAAkC;YACjD,OAAO,EAAE,yFAAyF;YAClG,QAAQ,EAAE,UAAU;SACrB;KACF;IACD,QAAQ,EAAE;QACR,SAAS,EAAE;YACT,aAAa,EAAE,QAAQ;YACvB,OAAO,EAAE,+FAA+F;SACzG;QACD,QAAQ,EAAE;YACR,sDAAsD;YACtD,yIAAyI;YACzI,qGAAqG;YACrG,+FAA+F;YAC/F,2GAA2G;SAC5G;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,OAAO;YAChB,KAAK,EAAE,SAAS;SACjB;KACF;IACD,QAAQ,EAAE;QACR,OAAO,EAAE,eAAe;QACxB,KAAK,EAAE,wDAAwD;KAChE;IACD,KAAK,EAAE,SAAS;IAChB,MAAM,EAAE,SAAS;IACjB,SAAS,EAAE,EAAE;IACb,cAAc,EAAE;QACd,MAAM;QACN,eAAe;KAChB;CACF,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pchip.d.ts","sourceRoot":"","sources":["../../../src/generated/builtins/pchip.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAEpD,QAAA,MAAM,UAAU,EAAE,UAyEjB,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
// @generated by scripts/generate-builtins.cjs
|
|
2
|
+
// Do not edit by hand.
|
|
3
|
+
const builtinDoc = {
|
|
4
|
+
"title": "pchip",
|
|
5
|
+
"category": "math/interpolation",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"pchip",
|
|
8
|
+
"piecewise cubic hermite",
|
|
9
|
+
"shape preserving",
|
|
10
|
+
"interpolation"
|
|
11
|
+
],
|
|
12
|
+
"summary": "Shape-preserving piecewise cubic Hermite interpolation.",
|
|
13
|
+
"gpu_support": {
|
|
14
|
+
"elementwise": false,
|
|
15
|
+
"reduction": false,
|
|
16
|
+
"precisions": [
|
|
17
|
+
"f32",
|
|
18
|
+
"f64"
|
|
19
|
+
],
|
|
20
|
+
"broadcasting": "matlab",
|
|
21
|
+
"notes": "GPU inputs are gathered to the CPU reference implementation."
|
|
22
|
+
},
|
|
23
|
+
"fusion": {
|
|
24
|
+
"elementwise": false,
|
|
25
|
+
"reduction": false,
|
|
26
|
+
"max_inputs": 3,
|
|
27
|
+
"constants": "inline"
|
|
28
|
+
},
|
|
29
|
+
"description": "`pchip(x, y)` builds a shape-preserving cubic Hermite interpolant. `pchip(x, y, xq)` evaluates it at query points.",
|
|
30
|
+
"behaviors": [
|
|
31
|
+
"Returns the same pp-structure shape used by `spline`.",
|
|
32
|
+
"Uses monotonicity-preserving slopes so monotone data does not overshoot between samples.",
|
|
33
|
+
"Dense real numeric inputs are supported in the initial implementation."
|
|
34
|
+
],
|
|
35
|
+
"examples": [
|
|
36
|
+
{
|
|
37
|
+
"description": "Shape-preserving interpolation",
|
|
38
|
+
"input": "x = [1 2 3];\ny = [1 4 9];\nyq = pchip(x, y, [1.5 2.5])",
|
|
39
|
+
"output": "yq = [2.21875 6.21875]"
|
|
40
|
+
}
|
|
41
|
+
],
|
|
42
|
+
"syntax": {
|
|
43
|
+
"example": {
|
|
44
|
+
"description": "Syntax",
|
|
45
|
+
"input": "pp = pchip(x, y)\nyq = pchip(x, y, xq)"
|
|
46
|
+
},
|
|
47
|
+
"points": [
|
|
48
|
+
"`x` is a strictly increasing vector of sample locations.",
|
|
49
|
+
"`y` contains the sampled values to interpolate.",
|
|
50
|
+
"`pchip(x, y)` returns a piecewise-polynomial structure compatible with `ppval`.",
|
|
51
|
+
"`pchip(x, y, xq)` evaluates the shape-preserving interpolant directly at query points.",
|
|
52
|
+
"PCHIP is usually preferred over spline interpolation when monotonicity and avoiding overshoot matter."
|
|
53
|
+
]
|
|
54
|
+
},
|
|
55
|
+
"links": [
|
|
56
|
+
{
|
|
57
|
+
"label": "interp1",
|
|
58
|
+
"url": "./interp1"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"label": "ppval",
|
|
62
|
+
"url": "./ppval"
|
|
63
|
+
}
|
|
64
|
+
],
|
|
65
|
+
"source": {
|
|
66
|
+
"label": "Open an issue",
|
|
67
|
+
"url": "https://github.com/runmat-org/runmat/issues/new/choose"
|
|
68
|
+
},
|
|
69
|
+
"key": "pchip",
|
|
70
|
+
"slug": "pchip",
|
|
71
|
+
"aliases": [],
|
|
72
|
+
"categoryPath": [
|
|
73
|
+
"math",
|
|
74
|
+
"interpolation"
|
|
75
|
+
]
|
|
76
|
+
};
|
|
77
|
+
export default builtinDoc;
|
|
78
|
+
//# sourceMappingURL=pchip.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pchip.js","sourceRoot":"","sources":["../../../src/generated/builtins/pchip.ts"],"names":[],"mappings":"AAAA,8CAA8C;AAC9C,uBAAuB;AAIvB,MAAM,UAAU,GAAe;IAC7B,OAAO,EAAE,OAAO;IAChB,UAAU,EAAE,oBAAoB;IAChC,UAAU,EAAE;QACV,OAAO;QACP,yBAAyB;QACzB,kBAAkB;QAClB,eAAe;KAChB;IACD,SAAS,EAAE,yDAAyD;IACpE,aAAa,EAAE;QACb,aAAa,EAAE,KAAK;QACpB,WAAW,EAAE,KAAK;QAClB,YAAY,EAAE;YACZ,KAAK;YACL,KAAK;SACN;QACD,cAAc,EAAE,QAAQ;QACxB,OAAO,EAAE,8DAA8D;KACxE;IACD,QAAQ,EAAE;QACR,aAAa,EAAE,KAAK;QACpB,WAAW,EAAE,KAAK;QAClB,YAAY,EAAE,CAAC;QACf,WAAW,EAAE,QAAQ;KACtB;IACD,aAAa,EAAE,oHAAoH;IACnI,WAAW,EAAE;QACX,uDAAuD;QACvD,0FAA0F;QAC1F,wEAAwE;KACzE;IACD,UAAU,EAAE;QACV;YACE,aAAa,EAAE,gCAAgC;YAC/C,OAAO,EAAE,yDAAyD;YAClE,QAAQ,EAAE,wBAAwB;SACnC;KACF;IACD,QAAQ,EAAE;QACR,SAAS,EAAE;YACT,aAAa,EAAE,QAAQ;YACvB,OAAO,EAAE,wCAAwC;SAClD;QACD,QAAQ,EAAE;YACR,0DAA0D;YAC1D,iDAAiD;YACjD,iFAAiF;YACjF,wFAAwF;YACxF,uGAAuG;SACxG;KACF;IACD,OAAO,EAAE;QACP;YACE,OAAO,EAAE,SAAS;YAClB,KAAK,EAAE,WAAW;SACnB;QACD;YACE,OAAO,EAAE,OAAO;YAChB,KAAK,EAAE,SAAS;SACjB;KACF;IACD,QAAQ,EAAE;QACR,OAAO,EAAE,eAAe;QACxB,KAAK,EAAE,wDAAwD;KAChE;IACD,KAAK,EAAE,OAAO;IACd,MAAM,EAAE,OAAO;IACf,SAAS,EAAE,EAAE;IACb,cAAc,EAAE;QACd,MAAM;QACN,eAAe;KAChB;CACF,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ppval.d.ts","sourceRoot":"","sources":["../../../src/generated/builtins/ppval.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAEpD,QAAA,MAAM,UAAU,EAAE,UAwEjB,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
// @generated by scripts/generate-builtins.cjs
|
|
2
|
+
// Do not edit by hand.
|
|
3
|
+
const builtinDoc = {
|
|
4
|
+
"title": "ppval",
|
|
5
|
+
"category": "math/interpolation",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"ppval",
|
|
8
|
+
"piecewise polynomial",
|
|
9
|
+
"spline",
|
|
10
|
+
"pchip"
|
|
11
|
+
],
|
|
12
|
+
"summary": "Evaluate a piecewise-polynomial structure.",
|
|
13
|
+
"gpu_support": {
|
|
14
|
+
"elementwise": false,
|
|
15
|
+
"reduction": false,
|
|
16
|
+
"precisions": [
|
|
17
|
+
"f32",
|
|
18
|
+
"f64"
|
|
19
|
+
],
|
|
20
|
+
"broadcasting": "matlab",
|
|
21
|
+
"notes": "GPU query points are gathered to the CPU reference implementation."
|
|
22
|
+
},
|
|
23
|
+
"fusion": {
|
|
24
|
+
"elementwise": false,
|
|
25
|
+
"reduction": false,
|
|
26
|
+
"max_inputs": 2,
|
|
27
|
+
"constants": "uniform"
|
|
28
|
+
},
|
|
29
|
+
"description": "`ppval(pp, xq)` evaluates a piecewise-polynomial structure produced by `spline` or `pchip` at query points `xq`.",
|
|
30
|
+
"behaviors": [
|
|
31
|
+
"Accepts pp structures with `form`, `breaks`, `coefs`, `pieces`, `order`, and `dim` fields.",
|
|
32
|
+
"Uses Horner evaluation within each interval.",
|
|
33
|
+
"Extrapolates outside the break range, matching MATLAB pp evaluation behavior."
|
|
34
|
+
],
|
|
35
|
+
"examples": [
|
|
36
|
+
{
|
|
37
|
+
"description": "Evaluate a spline pp structure",
|
|
38
|
+
"input": "pp = spline([1 2 3], [1 4 9]);\nyq = ppval(pp, [1.5 2.5])",
|
|
39
|
+
"output": "yq = [2.25 6.25]"
|
|
40
|
+
}
|
|
41
|
+
],
|
|
42
|
+
"syntax": {
|
|
43
|
+
"example": {
|
|
44
|
+
"description": "Syntax",
|
|
45
|
+
"input": "yq = ppval(pp, xq)"
|
|
46
|
+
},
|
|
47
|
+
"points": [
|
|
48
|
+
"`pp` is a piecewise-polynomial structure, typically returned by `spline` or `pchip`.",
|
|
49
|
+
"`xq` contains query points. Scalar queries return scalars, and array queries preserve their shape.",
|
|
50
|
+
"RunMat evaluates each interval with Horner's method using the pp coefficient table.",
|
|
51
|
+
"Queries outside the break range are extrapolated from the first or last polynomial piece."
|
|
52
|
+
]
|
|
53
|
+
},
|
|
54
|
+
"links": [
|
|
55
|
+
{
|
|
56
|
+
"label": "spline",
|
|
57
|
+
"url": "./spline"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"label": "pchip",
|
|
61
|
+
"url": "./pchip"
|
|
62
|
+
}
|
|
63
|
+
],
|
|
64
|
+
"source": {
|
|
65
|
+
"label": "Open an issue",
|
|
66
|
+
"url": "https://github.com/runmat-org/runmat/issues/new/choose"
|
|
67
|
+
},
|
|
68
|
+
"key": "ppval",
|
|
69
|
+
"slug": "ppval",
|
|
70
|
+
"aliases": [],
|
|
71
|
+
"categoryPath": [
|
|
72
|
+
"math",
|
|
73
|
+
"interpolation"
|
|
74
|
+
]
|
|
75
|
+
};
|
|
76
|
+
export default builtinDoc;
|
|
77
|
+
//# sourceMappingURL=ppval.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ppval.js","sourceRoot":"","sources":["../../../src/generated/builtins/ppval.ts"],"names":[],"mappings":"AAAA,8CAA8C;AAC9C,uBAAuB;AAIvB,MAAM,UAAU,GAAe;IAC7B,OAAO,EAAE,OAAO;IAChB,UAAU,EAAE,oBAAoB;IAChC,UAAU,EAAE;QACV,OAAO;QACP,sBAAsB;QACtB,QAAQ;QACR,OAAO;KACR;IACD,SAAS,EAAE,4CAA4C;IACvD,aAAa,EAAE;QACb,aAAa,EAAE,KAAK;QACpB,WAAW,EAAE,KAAK;QAClB,YAAY,EAAE;YACZ,KAAK;YACL,KAAK;SACN;QACD,cAAc,EAAE,QAAQ;QACxB,OAAO,EAAE,oEAAoE;KAC9E;IACD,QAAQ,EAAE;QACR,aAAa,EAAE,KAAK;QACpB,WAAW,EAAE,KAAK;QAClB,YAAY,EAAE,CAAC;QACf,WAAW,EAAE,SAAS;KACvB;IACD,aAAa,EAAE,kHAAkH;IACjI,WAAW,EAAE;QACX,4FAA4F;QAC5F,8CAA8C;QAC9C,+EAA+E;KAChF;IACD,UAAU,EAAE;QACV;YACE,aAAa,EAAE,gCAAgC;YAC/C,OAAO,EAAE,2DAA2D;YACpE,QAAQ,EAAE,kBAAkB;SAC7B;KACF;IACD,QAAQ,EAAE;QACR,SAAS,EAAE;YACT,aAAa,EAAE,QAAQ;YACvB,OAAO,EAAE,oBAAoB;SAC9B;QACD,QAAQ,EAAE;YACR,sFAAsF;YACtF,oGAAoG;YACpG,qFAAqF;YACrF,2FAA2F;SAC5F;KACF;IACD,OAAO,EAAE;QACP;YACE,OAAO,EAAE,QAAQ;YACjB,KAAK,EAAE,UAAU;SAClB;QACD;YACE,OAAO,EAAE,OAAO;YAChB,KAAK,EAAE,SAAS;SACjB;KACF;IACD,QAAQ,EAAE;QACR,OAAO,EAAE,eAAe;QACxB,KAAK,EAAE,wDAAwD;KAChE;IACD,KAAK,EAAE,OAAO;IACd,MAAM,EAAE,OAAO;IACf,SAAS,EAAE,EAAE;IACb,cAAc,EAAE;QACd,MAAM;QACN,eAAe;KAChB;CACF,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"spline.d.ts","sourceRoot":"","sources":["../../../src/generated/builtins/spline.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAEpD,QAAA,MAAM,UAAU,EAAE,UA+EjB,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
// @generated by scripts/generate-builtins.cjs
|
|
2
|
+
// Do not edit by hand.
|
|
3
|
+
const builtinDoc = {
|
|
4
|
+
"title": "spline",
|
|
5
|
+
"category": "math/interpolation",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"spline",
|
|
8
|
+
"cubic spline",
|
|
9
|
+
"interpolation",
|
|
10
|
+
"pp",
|
|
11
|
+
"ppval"
|
|
12
|
+
],
|
|
13
|
+
"summary": "Construct or evaluate a cubic spline interpolant.",
|
|
14
|
+
"gpu_support": {
|
|
15
|
+
"elementwise": false,
|
|
16
|
+
"reduction": false,
|
|
17
|
+
"precisions": [
|
|
18
|
+
"f32",
|
|
19
|
+
"f64"
|
|
20
|
+
],
|
|
21
|
+
"broadcasting": "matlab",
|
|
22
|
+
"notes": "GPU inputs are gathered to the CPU reference implementation."
|
|
23
|
+
},
|
|
24
|
+
"fusion": {
|
|
25
|
+
"elementwise": false,
|
|
26
|
+
"reduction": false,
|
|
27
|
+
"max_inputs": 3,
|
|
28
|
+
"constants": "inline"
|
|
29
|
+
},
|
|
30
|
+
"description": "`spline(x, y)` returns a piecewise-polynomial structure for cubic spline interpolation. `spline(x, y, xq)` evaluates that spline directly at query points.",
|
|
31
|
+
"behaviors": [
|
|
32
|
+
"Returns a pp structure with `form`, `breaks`, `coefs`, `pieces`, `order`, and `dim` fields.",
|
|
33
|
+
"The direct evaluation form extrapolates outside the sample range, matching MATLAB's standalone `spline` behavior.",
|
|
34
|
+
"Dense real numeric inputs are supported in the initial implementation."
|
|
35
|
+
],
|
|
36
|
+
"examples": [
|
|
37
|
+
{
|
|
38
|
+
"description": "Build and evaluate a spline",
|
|
39
|
+
"input": "x = [1 2 3];\ny = [1 4 9];\npp = spline(x, y);\nyq = ppval(pp, [1.5 2.5])",
|
|
40
|
+
"output": "yq = [2.25 6.25]"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"description": "Direct evaluation",
|
|
44
|
+
"input": "x = [1 2 3];\ny = [1 4 9];\nyq = spline(x, y, 1.5)",
|
|
45
|
+
"output": "yq = 2.25"
|
|
46
|
+
}
|
|
47
|
+
],
|
|
48
|
+
"syntax": {
|
|
49
|
+
"example": {
|
|
50
|
+
"description": "Syntax",
|
|
51
|
+
"input": "pp = spline(x, y)\nyq = spline(x, y, xq)"
|
|
52
|
+
},
|
|
53
|
+
"points": [
|
|
54
|
+
"`x` is a strictly increasing vector of sample locations.",
|
|
55
|
+
"`y` contains the sampled values to interpolate.",
|
|
56
|
+
"`spline(x, y)` returns a piecewise-polynomial structure compatible with `ppval`.",
|
|
57
|
+
"`spline(x, y, xq)` evaluates the cubic spline directly at query points.",
|
|
58
|
+
"Standalone `spline` extrapolates outside the sample range using the first or last polynomial piece."
|
|
59
|
+
]
|
|
60
|
+
},
|
|
61
|
+
"links": [
|
|
62
|
+
{
|
|
63
|
+
"label": "interp1",
|
|
64
|
+
"url": "./interp1"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"label": "ppval",
|
|
68
|
+
"url": "./ppval"
|
|
69
|
+
}
|
|
70
|
+
],
|
|
71
|
+
"source": {
|
|
72
|
+
"label": "Open an issue",
|
|
73
|
+
"url": "https://github.com/runmat-org/runmat/issues/new/choose"
|
|
74
|
+
},
|
|
75
|
+
"key": "spline",
|
|
76
|
+
"slug": "spline",
|
|
77
|
+
"aliases": [],
|
|
78
|
+
"categoryPath": [
|
|
79
|
+
"math",
|
|
80
|
+
"interpolation"
|
|
81
|
+
]
|
|
82
|
+
};
|
|
83
|
+
export default builtinDoc;
|
|
84
|
+
//# sourceMappingURL=spline.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"spline.js","sourceRoot":"","sources":["../../../src/generated/builtins/spline.ts"],"names":[],"mappings":"AAAA,8CAA8C;AAC9C,uBAAuB;AAIvB,MAAM,UAAU,GAAe;IAC7B,OAAO,EAAE,QAAQ;IACjB,UAAU,EAAE,oBAAoB;IAChC,UAAU,EAAE;QACV,QAAQ;QACR,cAAc;QACd,eAAe;QACf,IAAI;QACJ,OAAO;KACR;IACD,SAAS,EAAE,mDAAmD;IAC9D,aAAa,EAAE;QACb,aAAa,EAAE,KAAK;QACpB,WAAW,EAAE,KAAK;QAClB,YAAY,EAAE;YACZ,KAAK;YACL,KAAK;SACN;QACD,cAAc,EAAE,QAAQ;QACxB,OAAO,EAAE,8DAA8D;KACxE;IACD,QAAQ,EAAE;QACR,aAAa,EAAE,KAAK;QACpB,WAAW,EAAE,KAAK;QAClB,YAAY,EAAE,CAAC;QACf,WAAW,EAAE,QAAQ;KACtB;IACD,aAAa,EAAE,4JAA4J;IAC3K,WAAW,EAAE;QACX,6FAA6F;QAC7F,mHAAmH;QACnH,wEAAwE;KACzE;IACD,UAAU,EAAE;QACV;YACE,aAAa,EAAE,6BAA6B;YAC5C,OAAO,EAAE,2EAA2E;YACpF,QAAQ,EAAE,kBAAkB;SAC7B;QACD;YACE,aAAa,EAAE,mBAAmB;YAClC,OAAO,EAAE,oDAAoD;YAC7D,QAAQ,EAAE,WAAW;SACtB;KACF;IACD,QAAQ,EAAE;QACR,SAAS,EAAE;YACT,aAAa,EAAE,QAAQ;YACvB,OAAO,EAAE,0CAA0C;SACpD;QACD,QAAQ,EAAE;YACR,0DAA0D;YAC1D,iDAAiD;YACjD,kFAAkF;YAClF,yEAAyE;YACzE,qGAAqG;SACtG;KACF;IACD,OAAO,EAAE;QACP;YACE,OAAO,EAAE,SAAS;YAClB,KAAK,EAAE,WAAW;SACnB;QACD;YACE,OAAO,EAAE,OAAO;YAChB,KAAK,EAAE,SAAS;SACjB;KACF;IACD,QAAQ,EAAE;QACR,OAAO,EAAE,eAAe;QACxB,KAAK,EAAE,wDAAwD;KAChE;IACD,KAAK,EAAE,QAAQ;IACf,MAAM,EAAE,QAAQ;IAChB,SAAS,EAAE,EAAE;IACb,cAAc,EAAE;QACd,MAAM;QACN,eAAe;KAChB;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,EAq4OjD,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,MAAM,CAAC,MAAM,EAAE,gBAAgB,CAuX9D,CAAC;AAEF,eAAO,MAAM,4BAA4B,sEAC0C,CAAC"}
|
|
@@ -3158,6 +3158,47 @@ export const builtinManifest = [
|
|
|
3158
3158
|
"summary": "Prompt the user for input. Return either the typed text or a parsed numeric value.",
|
|
3159
3159
|
"exampleCount": 1
|
|
3160
3160
|
},
|
|
3161
|
+
{
|
|
3162
|
+
"key": "interp1",
|
|
3163
|
+
"title": "interp1",
|
|
3164
|
+
"slug": "interp1",
|
|
3165
|
+
"aliases": [],
|
|
3166
|
+
"category": "math/interpolation",
|
|
3167
|
+
"categoryPath": [
|
|
3168
|
+
"math",
|
|
3169
|
+
"interpolation"
|
|
3170
|
+
],
|
|
3171
|
+
"keywords": [
|
|
3172
|
+
"interp1",
|
|
3173
|
+
"interpolation",
|
|
3174
|
+
"linear",
|
|
3175
|
+
"nearest",
|
|
3176
|
+
"spline",
|
|
3177
|
+
"pchip"
|
|
3178
|
+
],
|
|
3179
|
+
"summary": "Interpolate one-dimensional sampled data at query points.",
|
|
3180
|
+
"exampleCount": 2
|
|
3181
|
+
},
|
|
3182
|
+
{
|
|
3183
|
+
"key": "interp2",
|
|
3184
|
+
"title": "interp2",
|
|
3185
|
+
"slug": "interp2",
|
|
3186
|
+
"aliases": [],
|
|
3187
|
+
"category": "math/interpolation",
|
|
3188
|
+
"categoryPath": [
|
|
3189
|
+
"math",
|
|
3190
|
+
"interpolation"
|
|
3191
|
+
],
|
|
3192
|
+
"keywords": [
|
|
3193
|
+
"interp2",
|
|
3194
|
+
"2-D interpolation",
|
|
3195
|
+
"bilinear",
|
|
3196
|
+
"nearest",
|
|
3197
|
+
"meshgrid"
|
|
3198
|
+
],
|
|
3199
|
+
"summary": "Interpolate values over a two-dimensional gridded surface.",
|
|
3200
|
+
"exampleCount": 2
|
|
3201
|
+
},
|
|
3161
3202
|
{
|
|
3162
3203
|
"key": "intersect",
|
|
3163
3204
|
"title": "intersect",
|
|
@@ -4787,6 +4828,25 @@ export const builtinManifest = [
|
|
|
4787
4828
|
"summary": "Suspend execution until the user presses a key or a specified time elapses.",
|
|
4788
4829
|
"exampleCount": 5
|
|
4789
4830
|
},
|
|
4831
|
+
{
|
|
4832
|
+
"key": "pchip",
|
|
4833
|
+
"title": "pchip",
|
|
4834
|
+
"slug": "pchip",
|
|
4835
|
+
"aliases": [],
|
|
4836
|
+
"category": "math/interpolation",
|
|
4837
|
+
"categoryPath": [
|
|
4838
|
+
"math",
|
|
4839
|
+
"interpolation"
|
|
4840
|
+
],
|
|
4841
|
+
"keywords": [
|
|
4842
|
+
"pchip",
|
|
4843
|
+
"piecewise cubic hermite",
|
|
4844
|
+
"shape preserving",
|
|
4845
|
+
"interpolation"
|
|
4846
|
+
],
|
|
4847
|
+
"summary": "Shape-preserving piecewise cubic Hermite interpolation.",
|
|
4848
|
+
"exampleCount": 1
|
|
4849
|
+
},
|
|
4790
4850
|
{
|
|
4791
4851
|
"key": "peaks",
|
|
4792
4852
|
"title": "peaks",
|
|
@@ -5047,6 +5107,25 @@ export const builtinManifest = [
|
|
|
5047
5107
|
"summary": "Element-wise exponentiation A .^ B with MATLAB-compatible broadcasting, complex support, and GPU fallbacks.",
|
|
5048
5108
|
"exampleCount": 6
|
|
5049
5109
|
},
|
|
5110
|
+
{
|
|
5111
|
+
"key": "ppval",
|
|
5112
|
+
"title": "ppval",
|
|
5113
|
+
"slug": "ppval",
|
|
5114
|
+
"aliases": [],
|
|
5115
|
+
"category": "math/interpolation",
|
|
5116
|
+
"categoryPath": [
|
|
5117
|
+
"math",
|
|
5118
|
+
"interpolation"
|
|
5119
|
+
],
|
|
5120
|
+
"keywords": [
|
|
5121
|
+
"ppval",
|
|
5122
|
+
"piecewise polynomial",
|
|
5123
|
+
"spline",
|
|
5124
|
+
"pchip"
|
|
5125
|
+
],
|
|
5126
|
+
"summary": "Evaluate a piecewise-polynomial structure.",
|
|
5127
|
+
"exampleCount": 1
|
|
5128
|
+
},
|
|
5050
5129
|
{
|
|
5051
5130
|
"key": "prod",
|
|
5052
5131
|
"title": "prod",
|
|
@@ -6073,6 +6152,26 @@ export const builtinManifest = [
|
|
|
6073
6152
|
"summary": "Sort matrix rows lexicographically with optional column and direction control.",
|
|
6074
6153
|
"exampleCount": 8
|
|
6075
6154
|
},
|
|
6155
|
+
{
|
|
6156
|
+
"key": "spline",
|
|
6157
|
+
"title": "spline",
|
|
6158
|
+
"slug": "spline",
|
|
6159
|
+
"aliases": [],
|
|
6160
|
+
"category": "math/interpolation",
|
|
6161
|
+
"categoryPath": [
|
|
6162
|
+
"math",
|
|
6163
|
+
"interpolation"
|
|
6164
|
+
],
|
|
6165
|
+
"keywords": [
|
|
6166
|
+
"spline",
|
|
6167
|
+
"cubic spline",
|
|
6168
|
+
"interpolation",
|
|
6169
|
+
"pp",
|
|
6170
|
+
"ppval"
|
|
6171
|
+
],
|
|
6172
|
+
"summary": "Construct or evaluate a cubic spline interpolant.",
|
|
6173
|
+
"exampleCount": 2
|
|
6174
|
+
},
|
|
6076
6175
|
{
|
|
6077
6176
|
"key": "split",
|
|
6078
6177
|
"title": "split",
|
|
@@ -7616,6 +7715,8 @@ export const builtinDocLoaders = {
|
|
|
7616
7715
|
"imfilter": () => import("./builtins/imfilter.js").then((mod) => mod.default),
|
|
7617
7716
|
"ind2sub": () => import("./builtins/ind2sub.js").then((mod) => mod.default),
|
|
7618
7717
|
"input": () => import("./builtins/input.js").then((mod) => mod.default),
|
|
7718
|
+
"interp1": () => import("./builtins/interp1.js").then((mod) => mod.default),
|
|
7719
|
+
"interp2": () => import("./builtins/interp2.js").then((mod) => mod.default),
|
|
7619
7720
|
"intersect": () => import("./builtins/intersect.js").then((mod) => mod.default),
|
|
7620
7721
|
"inv": () => import("./builtins/inv.js").then((mod) => mod.default),
|
|
7621
7722
|
"ipermute": () => import("./builtins/ipermute.js").then((mod) => mod.default),
|
|
@@ -7696,6 +7797,7 @@ export const builtinDocLoaders = {
|
|
|
7696
7797
|
"pagefun": () => import("./builtins/pagefun.js").then((mod) => mod.default),
|
|
7697
7798
|
"path": () => import("./builtins/path.js").then((mod) => mod.default),
|
|
7698
7799
|
"pause": () => import("./builtins/pause.js").then((mod) => mod.default),
|
|
7800
|
+
"pchip": () => import("./builtins/pchip.js").then((mod) => mod.default),
|
|
7699
7801
|
"peaks": () => import("./builtins/peaks.js").then((mod) => mod.default),
|
|
7700
7802
|
"permute": () => import("./builtins/permute.js").then((mod) => mod.default),
|
|
7701
7803
|
"pie": () => import("./builtins/pie.js").then((mod) => mod.default),
|
|
@@ -7709,6 +7811,7 @@ export const builtinDocLoaders = {
|
|
|
7709
7811
|
"polyval": () => import("./builtins/polyval.js").then((mod) => mod.default),
|
|
7710
7812
|
"pow2": () => import("./builtins/pow2.js").then((mod) => mod.default),
|
|
7711
7813
|
"power": () => import("./builtins/power.js").then((mod) => mod.default),
|
|
7814
|
+
"ppval": () => import("./builtins/ppval.js").then((mod) => mod.default),
|
|
7712
7815
|
"prod": () => import("./builtins/prod.js").then((mod) => mod.default),
|
|
7713
7816
|
"pwd": () => import("./builtins/pwd.js").then((mod) => mod.default),
|
|
7714
7817
|
"qr": () => import("./builtins/qr.js").then((mod) => mod.default),
|
|
@@ -7760,6 +7863,7 @@ export const builtinDocLoaders = {
|
|
|
7760
7863
|
"size": () => import("./builtins/size.js").then((mod) => mod.default),
|
|
7761
7864
|
"sort": () => import("./builtins/sort.js").then((mod) => mod.default),
|
|
7762
7865
|
"sortrows": () => import("./builtins/sortrows.js").then((mod) => mod.default),
|
|
7866
|
+
"spline": () => import("./builtins/spline.js").then((mod) => mod.default),
|
|
7763
7867
|
"split": () => import("./builtins/split.js").then((mod) => mod.default),
|
|
7764
7868
|
"sprintf": () => import("./builtins/sprintf.js").then((mod) => mod.default),
|
|
7765
7869
|
"sqrt": () => import("./builtins/sqrt.js").then((mod) => mod.default),
|