runmat 0.4.5-dev.2 → 0.4.5-dev.4

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 (47) hide show
  1. package/artifacts/stdlib.snapshot +0 -0
  2. package/dist/fs/default.d.ts.map +1 -1
  3. package/dist/fs/default.js +11 -0
  4. package/dist/fs/default.js.map +1 -1
  5. package/dist/fs/indexeddb.d.ts.map +1 -1
  6. package/dist/fs/indexeddb.js +106 -46
  7. package/dist/fs/indexeddb.js.map +1 -1
  8. package/dist/generated/builtin-examples-catalog.d.ts.map +1 -1
  9. package/dist/generated/builtin-examples-catalog.js +1 -1
  10. package/dist/generated/builtin-examples-catalog.js.map +1 -1
  11. package/dist/generated/builtins/imshow.d.ts +4 -0
  12. package/dist/generated/builtins/imshow.d.ts.map +1 -0
  13. package/dist/generated/builtins/imshow.js +104 -0
  14. package/dist/generated/builtins/imshow.js.map +1 -0
  15. package/dist/generated/builtins/interp1.d.ts +4 -0
  16. package/dist/generated/builtins/interp1.d.ts.map +1 -0
  17. package/dist/generated/builtins/interp1.js +90 -0
  18. package/dist/generated/builtins/interp1.js.map +1 -0
  19. package/dist/generated/builtins/interp2.d.ts +4 -0
  20. package/dist/generated/builtins/interp2.d.ts.map +1 -0
  21. package/dist/generated/builtins/interp2.js +88 -0
  22. package/dist/generated/builtins/interp2.js.map +1 -0
  23. package/dist/generated/builtins/pchip.d.ts +4 -0
  24. package/dist/generated/builtins/pchip.d.ts.map +1 -0
  25. package/dist/generated/builtins/pchip.js +78 -0
  26. package/dist/generated/builtins/pchip.js.map +1 -0
  27. package/dist/generated/builtins/ppval.d.ts +4 -0
  28. package/dist/generated/builtins/ppval.d.ts.map +1 -0
  29. package/dist/generated/builtins/ppval.js +77 -0
  30. package/dist/generated/builtins/ppval.js.map +1 -0
  31. package/dist/generated/builtins/spline.d.ts +4 -0
  32. package/dist/generated/builtins/spline.d.ts.map +1 -0
  33. package/dist/generated/builtins/spline.js +84 -0
  34. package/dist/generated/builtins/spline.js.map +1 -0
  35. package/dist/generated/builtins-manifest.d.ts.map +1 -1
  36. package/dist/generated/builtins-manifest.js +125 -0
  37. package/dist/generated/builtins-manifest.js.map +1 -1
  38. package/dist/lsp/runmat_lsp.d.ts +2 -2
  39. package/dist/lsp/runmat_lsp.js +4 -4
  40. package/dist/lsp/runmat_lsp_bg.wasm +0 -0
  41. package/dist/lsp/runmat_lsp_bg.wasm.d.ts +2 -2
  42. package/dist/pkg-web/runmat_wasm_web.d.ts +3 -3
  43. package/dist/pkg-web/runmat_wasm_web.js +7 -7
  44. package/dist/pkg-web/runmat_wasm_web_bg.wasm +0 -0
  45. package/dist/pkg-web/runmat_wasm_web_bg.wasm.d.ts +3 -3
  46. package/dist/runtime/stdlib.snapshot +0 -0
  47. package/package.json +1 -1
@@ -3117,6 +3117,26 @@ export const builtinManifest = [
3117
3117
  "summary": "Filter images or N-D arrays with correlation/convolution kernels and configurable padding.",
3118
3118
  "exampleCount": 5
3119
3119
  },
3120
+ {
3121
+ "key": "imshow",
3122
+ "title": "imshow",
3123
+ "slug": "imshow",
3124
+ "aliases": [],
3125
+ "category": "plotting",
3126
+ "categoryPath": [
3127
+ "plotting"
3128
+ ],
3129
+ "keywords": [
3130
+ "imshow",
3131
+ "image display",
3132
+ "grayscale image",
3133
+ "binary image",
3134
+ "rgb image",
3135
+ "matlab imshow"
3136
+ ],
3137
+ "summary": "Display grayscale, binary, truecolor, or file-backed images.",
3138
+ "exampleCount": 4
3139
+ },
3120
3140
  {
3121
3141
  "key": "ind2sub",
3122
3142
  "title": "ind2sub",
@@ -3158,6 +3178,47 @@ export const builtinManifest = [
3158
3178
  "summary": "Prompt the user for input. Return either the typed text or a parsed numeric value.",
3159
3179
  "exampleCount": 1
3160
3180
  },
3181
+ {
3182
+ "key": "interp1",
3183
+ "title": "interp1",
3184
+ "slug": "interp1",
3185
+ "aliases": [],
3186
+ "category": "math/interpolation",
3187
+ "categoryPath": [
3188
+ "math",
3189
+ "interpolation"
3190
+ ],
3191
+ "keywords": [
3192
+ "interp1",
3193
+ "interpolation",
3194
+ "linear",
3195
+ "nearest",
3196
+ "spline",
3197
+ "pchip"
3198
+ ],
3199
+ "summary": "Interpolate one-dimensional sampled data at query points.",
3200
+ "exampleCount": 2
3201
+ },
3202
+ {
3203
+ "key": "interp2",
3204
+ "title": "interp2",
3205
+ "slug": "interp2",
3206
+ "aliases": [],
3207
+ "category": "math/interpolation",
3208
+ "categoryPath": [
3209
+ "math",
3210
+ "interpolation"
3211
+ ],
3212
+ "keywords": [
3213
+ "interp2",
3214
+ "2-D interpolation",
3215
+ "bilinear",
3216
+ "nearest",
3217
+ "meshgrid"
3218
+ ],
3219
+ "summary": "Interpolate values over a two-dimensional gridded surface.",
3220
+ "exampleCount": 2
3221
+ },
3161
3222
  {
3162
3223
  "key": "intersect",
3163
3224
  "title": "intersect",
@@ -4787,6 +4848,25 @@ export const builtinManifest = [
4787
4848
  "summary": "Suspend execution until the user presses a key or a specified time elapses.",
4788
4849
  "exampleCount": 5
4789
4850
  },
4851
+ {
4852
+ "key": "pchip",
4853
+ "title": "pchip",
4854
+ "slug": "pchip",
4855
+ "aliases": [],
4856
+ "category": "math/interpolation",
4857
+ "categoryPath": [
4858
+ "math",
4859
+ "interpolation"
4860
+ ],
4861
+ "keywords": [
4862
+ "pchip",
4863
+ "piecewise cubic hermite",
4864
+ "shape preserving",
4865
+ "interpolation"
4866
+ ],
4867
+ "summary": "Shape-preserving piecewise cubic Hermite interpolation.",
4868
+ "exampleCount": 1
4869
+ },
4790
4870
  {
4791
4871
  "key": "peaks",
4792
4872
  "title": "peaks",
@@ -5047,6 +5127,25 @@ export const builtinManifest = [
5047
5127
  "summary": "Element-wise exponentiation A .^ B with MATLAB-compatible broadcasting, complex support, and GPU fallbacks.",
5048
5128
  "exampleCount": 6
5049
5129
  },
5130
+ {
5131
+ "key": "ppval",
5132
+ "title": "ppval",
5133
+ "slug": "ppval",
5134
+ "aliases": [],
5135
+ "category": "math/interpolation",
5136
+ "categoryPath": [
5137
+ "math",
5138
+ "interpolation"
5139
+ ],
5140
+ "keywords": [
5141
+ "ppval",
5142
+ "piecewise polynomial",
5143
+ "spline",
5144
+ "pchip"
5145
+ ],
5146
+ "summary": "Evaluate a piecewise-polynomial structure.",
5147
+ "exampleCount": 1
5148
+ },
5050
5149
  {
5051
5150
  "key": "prod",
5052
5151
  "title": "prod",
@@ -6073,6 +6172,26 @@ export const builtinManifest = [
6073
6172
  "summary": "Sort matrix rows lexicographically with optional column and direction control.",
6074
6173
  "exampleCount": 8
6075
6174
  },
6175
+ {
6176
+ "key": "spline",
6177
+ "title": "spline",
6178
+ "slug": "spline",
6179
+ "aliases": [],
6180
+ "category": "math/interpolation",
6181
+ "categoryPath": [
6182
+ "math",
6183
+ "interpolation"
6184
+ ],
6185
+ "keywords": [
6186
+ "spline",
6187
+ "cubic spline",
6188
+ "interpolation",
6189
+ "pp",
6190
+ "ppval"
6191
+ ],
6192
+ "summary": "Construct or evaluate a cubic spline interpolant.",
6193
+ "exampleCount": 2
6194
+ },
6076
6195
  {
6077
6196
  "key": "split",
6078
6197
  "title": "split",
@@ -7614,8 +7733,11 @@ export const builtinDocLoaders = {
7614
7733
  "image": () => import("./builtins/image.js").then((mod) => mod.default),
7615
7734
  "imagesc": () => import("./builtins/imagesc.js").then((mod) => mod.default),
7616
7735
  "imfilter": () => import("./builtins/imfilter.js").then((mod) => mod.default),
7736
+ "imshow": () => import("./builtins/imshow.js").then((mod) => mod.default),
7617
7737
  "ind2sub": () => import("./builtins/ind2sub.js").then((mod) => mod.default),
7618
7738
  "input": () => import("./builtins/input.js").then((mod) => mod.default),
7739
+ "interp1": () => import("./builtins/interp1.js").then((mod) => mod.default),
7740
+ "interp2": () => import("./builtins/interp2.js").then((mod) => mod.default),
7619
7741
  "intersect": () => import("./builtins/intersect.js").then((mod) => mod.default),
7620
7742
  "inv": () => import("./builtins/inv.js").then((mod) => mod.default),
7621
7743
  "ipermute": () => import("./builtins/ipermute.js").then((mod) => mod.default),
@@ -7696,6 +7818,7 @@ export const builtinDocLoaders = {
7696
7818
  "pagefun": () => import("./builtins/pagefun.js").then((mod) => mod.default),
7697
7819
  "path": () => import("./builtins/path.js").then((mod) => mod.default),
7698
7820
  "pause": () => import("./builtins/pause.js").then((mod) => mod.default),
7821
+ "pchip": () => import("./builtins/pchip.js").then((mod) => mod.default),
7699
7822
  "peaks": () => import("./builtins/peaks.js").then((mod) => mod.default),
7700
7823
  "permute": () => import("./builtins/permute.js").then((mod) => mod.default),
7701
7824
  "pie": () => import("./builtins/pie.js").then((mod) => mod.default),
@@ -7709,6 +7832,7 @@ export const builtinDocLoaders = {
7709
7832
  "polyval": () => import("./builtins/polyval.js").then((mod) => mod.default),
7710
7833
  "pow2": () => import("./builtins/pow2.js").then((mod) => mod.default),
7711
7834
  "power": () => import("./builtins/power.js").then((mod) => mod.default),
7835
+ "ppval": () => import("./builtins/ppval.js").then((mod) => mod.default),
7712
7836
  "prod": () => import("./builtins/prod.js").then((mod) => mod.default),
7713
7837
  "pwd": () => import("./builtins/pwd.js").then((mod) => mod.default),
7714
7838
  "qr": () => import("./builtins/qr.js").then((mod) => mod.default),
@@ -7760,6 +7884,7 @@ export const builtinDocLoaders = {
7760
7884
  "size": () => import("./builtins/size.js").then((mod) => mod.default),
7761
7885
  "sort": () => import("./builtins/sort.js").then((mod) => mod.default),
7762
7886
  "sortrows": () => import("./builtins/sortrows.js").then((mod) => mod.default),
7887
+ "spline": () => import("./builtins/spline.js").then((mod) => mod.default),
7763
7888
  "split": () => import("./builtins/split.js").then((mod) => mod.default),
7764
7889
  "sprintf": () => import("./builtins/sprintf.js").then((mod) => mod.default),
7765
7890
  "sqrt": () => import("./builtins/sqrt.js").then((mod) => mod.default),