runmat 0.4.5-dev.1 → 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.
Files changed (49) hide show
  1. package/artifacts/stdlib.snapshot +0 -0
  2. package/dist/generated/builtin-examples-catalog.d.ts.map +1 -1
  3. package/dist/generated/builtin-examples-catalog.js +1 -1
  4. package/dist/generated/builtin-examples-catalog.js.map +1 -1
  5. package/dist/generated/builtins/fsolve.d.ts +4 -0
  6. package/dist/generated/builtins/fsolve.d.ts.map +1 -0
  7. package/dist/generated/builtins/fsolve.js +81 -0
  8. package/dist/generated/builtins/fsolve.js.map +1 -0
  9. package/dist/generated/builtins/fzero.d.ts +4 -0
  10. package/dist/generated/builtins/fzero.d.ts.map +1 -0
  11. package/dist/generated/builtins/fzero.js +86 -0
  12. package/dist/generated/builtins/fzero.js.map +1 -0
  13. package/dist/generated/builtins/interp1.d.ts +4 -0
  14. package/dist/generated/builtins/interp1.d.ts.map +1 -0
  15. package/dist/generated/builtins/interp1.js +90 -0
  16. package/dist/generated/builtins/interp1.js.map +1 -0
  17. package/dist/generated/builtins/interp2.d.ts +4 -0
  18. package/dist/generated/builtins/interp2.d.ts.map +1 -0
  19. package/dist/generated/builtins/interp2.js +88 -0
  20. package/dist/generated/builtins/interp2.js.map +1 -0
  21. package/dist/generated/builtins/optimset.d.ts +4 -0
  22. package/dist/generated/builtins/optimset.d.ts.map +1 -0
  23. package/dist/generated/builtins/optimset.js +71 -0
  24. package/dist/generated/builtins/optimset.js.map +1 -0
  25. package/dist/generated/builtins/pchip.d.ts +4 -0
  26. package/dist/generated/builtins/pchip.d.ts.map +1 -0
  27. package/dist/generated/builtins/pchip.js +78 -0
  28. package/dist/generated/builtins/pchip.js.map +1 -0
  29. package/dist/generated/builtins/ppval.d.ts +4 -0
  30. package/dist/generated/builtins/ppval.d.ts.map +1 -0
  31. package/dist/generated/builtins/ppval.js +77 -0
  32. package/dist/generated/builtins/ppval.js.map +1 -0
  33. package/dist/generated/builtins/spline.d.ts +4 -0
  34. package/dist/generated/builtins/spline.d.ts.map +1 -0
  35. package/dist/generated/builtins/spline.js +84 -0
  36. package/dist/generated/builtins/spline.js.map +1 -0
  37. package/dist/generated/builtins-manifest.d.ts.map +1 -1
  38. package/dist/generated/builtins-manifest.js +168 -0
  39. package/dist/generated/builtins-manifest.js.map +1 -1
  40. package/dist/lsp/runmat_lsp.d.ts +2 -2
  41. package/dist/lsp/runmat_lsp.js +4 -4
  42. package/dist/lsp/runmat_lsp_bg.wasm +0 -0
  43. package/dist/lsp/runmat_lsp_bg.wasm.d.ts +2 -2
  44. package/dist/pkg-web/runmat_wasm_web.d.ts +3 -3
  45. package/dist/pkg-web/runmat_wasm_web.js +7 -7
  46. package/dist/pkg-web/runmat_wasm_web_bg.wasm +0 -0
  47. package/dist/pkg-web/runmat_wasm_web_bg.wasm.d.ts +3 -3
  48. package/dist/runtime/stdlib.snapshot +0 -0
  49. package/package.json +1 -1
@@ -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,4 @@
1
+ import type { BuiltinDoc } from "../../builtins.js";
2
+ declare const builtinDoc: BuiltinDoc;
3
+ export default builtinDoc;
4
+ //# sourceMappingURL=spline.d.ts.map
@@ -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,EAquOjD,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,MAAM,CAAC,MAAM,EAAE,gBAAgB,CA+W9D,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,EAq4OjD,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,MAAM,CAAC,MAAM,EAAE,gBAAgB,CAuX9D,CAAC;AAEF,eAAO,MAAM,4BAA4B,sEAC0C,CAAC"}
@@ -2376,6 +2376,26 @@ export const builtinManifest = [
2376
2376
  "summary": "Rewind the file position indicator to the beginning of an open file.",
2377
2377
  "exampleCount": 3
2378
2378
  },
2379
+ {
2380
+ "key": "fsolve",
2381
+ "title": "fsolve",
2382
+ "slug": "fsolve",
2383
+ "aliases": [],
2384
+ "category": "math/optim",
2385
+ "categoryPath": [
2386
+ "math",
2387
+ "optim"
2388
+ ],
2389
+ "keywords": [
2390
+ "fsolve",
2391
+ "nonlinear solve",
2392
+ "root finding",
2393
+ "Jacobian",
2394
+ "Levenberg-Marquardt"
2395
+ ],
2396
+ "summary": "Solve scalar or vector nonlinear equation systems using finite-difference Levenberg-Marquardt iterations.",
2397
+ "exampleCount": 2
2398
+ },
2379
2399
  {
2380
2400
  "key": "fspecial",
2381
2401
  "title": "fspecial",
@@ -2439,6 +2459,26 @@ export const builtinManifest = [
2439
2459
  "summary": "Write binary data to a file identifier with MATLAB-compatible precision, skip, and machine-format semantics.",
2440
2460
  "exampleCount": 6
2441
2461
  },
2462
+ {
2463
+ "key": "fzero",
2464
+ "title": "fzero",
2465
+ "slug": "fzero",
2466
+ "aliases": [],
2467
+ "category": "math/optim",
2468
+ "categoryPath": [
2469
+ "math",
2470
+ "optim"
2471
+ ],
2472
+ "keywords": [
2473
+ "fzero",
2474
+ "root finding",
2475
+ "zero",
2476
+ "brent",
2477
+ "optimization"
2478
+ ],
2479
+ "summary": "Find a zero of a scalar nonlinear function using bracket expansion and Brent's method.",
2480
+ "exampleCount": 3
2481
+ },
2442
2482
  {
2443
2483
  "key": "gamma",
2444
2484
  "title": "gamma",
@@ -3118,6 +3158,47 @@ export const builtinManifest = [
3118
3158
  "summary": "Prompt the user for input. Return either the typed text or a parsed numeric value.",
3119
3159
  "exampleCount": 1
3120
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
+ },
3121
3202
  {
3122
3203
  "key": "intersect",
3123
3204
  "title": "intersect",
@@ -4604,6 +4685,27 @@ export const builtinManifest = [
4604
4685
  "summary": "Create arrays filled with ones within the MATLAB language.",
4605
4686
  "exampleCount": 3
4606
4687
  },
4688
+ {
4689
+ "key": "optimset",
4690
+ "title": "optimset",
4691
+ "slug": "optimset",
4692
+ "aliases": [],
4693
+ "category": "math/optim",
4694
+ "categoryPath": [
4695
+ "math",
4696
+ "optim"
4697
+ ],
4698
+ "keywords": [
4699
+ "optimset",
4700
+ "options",
4701
+ "TolX",
4702
+ "TolFun",
4703
+ "MaxIter",
4704
+ "Display"
4705
+ ],
4706
+ "summary": "Create or update an optimization options structure for fzero and fsolve.",
4707
+ "exampleCount": 1
4708
+ },
4607
4709
  {
4608
4710
  "key": "or",
4609
4711
  "title": "or",
@@ -4726,6 +4828,25 @@ export const builtinManifest = [
4726
4828
  "summary": "Suspend execution until the user presses a key or a specified time elapses.",
4727
4829
  "exampleCount": 5
4728
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
+ },
4729
4850
  {
4730
4851
  "key": "peaks",
4731
4852
  "title": "peaks",
@@ -4986,6 +5107,25 @@ export const builtinManifest = [
4986
5107
  "summary": "Element-wise exponentiation A .^ B with MATLAB-compatible broadcasting, complex support, and GPU fallbacks.",
4987
5108
  "exampleCount": 6
4988
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
+ },
4989
5129
  {
4990
5130
  "key": "prod",
4991
5131
  "title": "prod",
@@ -6012,6 +6152,26 @@ export const builtinManifest = [
6012
6152
  "summary": "Sort matrix rows lexicographically with optional column and direction control.",
6013
6153
  "exampleCount": 8
6014
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
+ },
6015
6175
  {
6016
6176
  "key": "split",
6017
6177
  "title": "split",
@@ -7516,9 +7676,11 @@ export const builtinDocLoaders = {
7516
7676
  "fprintf": () => import("./builtins/fprintf.js").then((mod) => mod.default),
7517
7677
  "fread": () => import("./builtins/fread.js").then((mod) => mod.default),
7518
7678
  "frewind": () => import("./builtins/frewind.js").then((mod) => mod.default),
7679
+ "fsolve": () => import("./builtins/fsolve.js").then((mod) => mod.default),
7519
7680
  "fspecial": () => import("./builtins/fspecial.js").then((mod) => mod.default),
7520
7681
  "fullfile": () => import("./builtins/fullfile.js").then((mod) => mod.default),
7521
7682
  "fwrite": () => import("./builtins/fwrite.js").then((mod) => mod.default),
7683
+ "fzero": () => import("./builtins/fzero.js").then((mod) => mod.default),
7522
7684
  "gamma": () => import("./builtins/gamma.js").then((mod) => mod.default),
7523
7685
  "gather": () => import("./builtins/gather.js").then((mod) => mod.default),
7524
7686
  "gca": () => import("./builtins/gca.js").then((mod) => mod.default),
@@ -7553,6 +7715,8 @@ export const builtinDocLoaders = {
7553
7715
  "imfilter": () => import("./builtins/imfilter.js").then((mod) => mod.default),
7554
7716
  "ind2sub": () => import("./builtins/ind2sub.js").then((mod) => mod.default),
7555
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),
7556
7720
  "intersect": () => import("./builtins/intersect.js").then((mod) => mod.default),
7557
7721
  "inv": () => import("./builtins/inv.js").then((mod) => mod.default),
7558
7722
  "ipermute": () => import("./builtins/ipermute.js").then((mod) => mod.default),
@@ -7626,12 +7790,14 @@ export const builtinDocLoaders = {
7626
7790
  "num2str": () => import("./builtins/num2str.js").then((mod) => mod.default),
7627
7791
  "numel": () => import("./builtins/numel.js").then((mod) => mod.default),
7628
7792
  "ones": () => import("./builtins/ones.js").then((mod) => mod.default),
7793
+ "optimset": () => import("./builtins/optimset.js").then((mod) => mod.default),
7629
7794
  "or": () => import("./builtins/or.js").then((mod) => mod.default),
7630
7795
  "orderfields": () => import("./builtins/orderfields.js").then((mod) => mod.default),
7631
7796
  "pad": () => import("./builtins/pad.js").then((mod) => mod.default),
7632
7797
  "pagefun": () => import("./builtins/pagefun.js").then((mod) => mod.default),
7633
7798
  "path": () => import("./builtins/path.js").then((mod) => mod.default),
7634
7799
  "pause": () => import("./builtins/pause.js").then((mod) => mod.default),
7800
+ "pchip": () => import("./builtins/pchip.js").then((mod) => mod.default),
7635
7801
  "peaks": () => import("./builtins/peaks.js").then((mod) => mod.default),
7636
7802
  "permute": () => import("./builtins/permute.js").then((mod) => mod.default),
7637
7803
  "pie": () => import("./builtins/pie.js").then((mod) => mod.default),
@@ -7645,6 +7811,7 @@ export const builtinDocLoaders = {
7645
7811
  "polyval": () => import("./builtins/polyval.js").then((mod) => mod.default),
7646
7812
  "pow2": () => import("./builtins/pow2.js").then((mod) => mod.default),
7647
7813
  "power": () => import("./builtins/power.js").then((mod) => mod.default),
7814
+ "ppval": () => import("./builtins/ppval.js").then((mod) => mod.default),
7648
7815
  "prod": () => import("./builtins/prod.js").then((mod) => mod.default),
7649
7816
  "pwd": () => import("./builtins/pwd.js").then((mod) => mod.default),
7650
7817
  "qr": () => import("./builtins/qr.js").then((mod) => mod.default),
@@ -7696,6 +7863,7 @@ export const builtinDocLoaders = {
7696
7863
  "size": () => import("./builtins/size.js").then((mod) => mod.default),
7697
7864
  "sort": () => import("./builtins/sort.js").then((mod) => mod.default),
7698
7865
  "sortrows": () => import("./builtins/sortrows.js").then((mod) => mod.default),
7866
+ "spline": () => import("./builtins/spline.js").then((mod) => mod.default),
7699
7867
  "split": () => import("./builtins/split.js").then((mod) => mod.default),
7700
7868
  "sprintf": () => import("./builtins/sprintf.js").then((mod) => mod.default),
7701
7869
  "sqrt": () => import("./builtins/sqrt.js").then((mod) => mod.default),