runmat 0.4.6-dev.1 → 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.
Files changed (65) 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/clearvars.d.ts +4 -0
  6. package/dist/generated/builtins/clearvars.d.ts.map +1 -0
  7. package/dist/generated/builtins/clearvars.js +119 -0
  8. package/dist/generated/builtins/clearvars.js.map +1 -0
  9. package/dist/generated/builtins/gray2rgb.d.ts +4 -0
  10. package/dist/generated/builtins/gray2rgb.d.ts.map +1 -0
  11. package/dist/generated/builtins/gray2rgb.js +62 -0
  12. package/dist/generated/builtins/gray2rgb.js.map +1 -0
  13. package/dist/generated/builtins/heatmap.d.ts +4 -0
  14. package/dist/generated/builtins/heatmap.d.ts.map +1 -0
  15. package/dist/generated/builtins/heatmap.js +87 -0
  16. package/dist/generated/builtins/heatmap.js.map +1 -0
  17. package/dist/generated/builtins/hsv2rgb.d.ts +4 -0
  18. package/dist/generated/builtins/hsv2rgb.d.ts.map +1 -0
  19. package/dist/generated/builtins/hsv2rgb.js +66 -0
  20. package/dist/generated/builtins/hsv2rgb.js.map +1 -0
  21. package/dist/generated/builtins/im2double.d.ts +4 -0
  22. package/dist/generated/builtins/im2double.d.ts.map +1 -0
  23. package/dist/generated/builtins/im2double.js +67 -0
  24. package/dist/generated/builtins/im2double.js.map +1 -0
  25. package/dist/generated/builtins/im2uint16.d.ts +4 -0
  26. package/dist/generated/builtins/im2uint16.d.ts.map +1 -0
  27. package/dist/generated/builtins/im2uint16.js +70 -0
  28. package/dist/generated/builtins/im2uint16.js.map +1 -0
  29. package/dist/generated/builtins/im2uint8.d.ts +4 -0
  30. package/dist/generated/builtins/im2uint8.d.ts.map +1 -0
  31. package/dist/generated/builtins/im2uint8.js +70 -0
  32. package/dist/generated/builtins/im2uint8.js.map +1 -0
  33. package/dist/generated/builtins/ind2rgb.d.ts +4 -0
  34. package/dist/generated/builtins/ind2rgb.d.ts.map +1 -0
  35. package/dist/generated/builtins/ind2rgb.js +66 -0
  36. package/dist/generated/builtins/ind2rgb.js.map +1 -0
  37. package/dist/generated/builtins/lab2rgb.d.ts +4 -0
  38. package/dist/generated/builtins/lab2rgb.d.ts.map +1 -0
  39. package/dist/generated/builtins/lab2rgb.js +67 -0
  40. package/dist/generated/builtins/lab2rgb.js.map +1 -0
  41. package/dist/generated/builtins/rgb2gray.d.ts +4 -0
  42. package/dist/generated/builtins/rgb2gray.d.ts.map +1 -0
  43. package/dist/generated/builtins/rgb2gray.js +66 -0
  44. package/dist/generated/builtins/rgb2gray.js.map +1 -0
  45. package/dist/generated/builtins/rgb2hsv.d.ts +4 -0
  46. package/dist/generated/builtins/rgb2hsv.d.ts.map +1 -0
  47. package/dist/generated/builtins/rgb2hsv.js +66 -0
  48. package/dist/generated/builtins/rgb2hsv.js.map +1 -0
  49. package/dist/generated/builtins/rgb2lab.d.ts +4 -0
  50. package/dist/generated/builtins/rgb2lab.d.ts.map +1 -0
  51. package/dist/generated/builtins/rgb2lab.js +67 -0
  52. package/dist/generated/builtins/rgb2lab.js.map +1 -0
  53. package/dist/generated/builtins-manifest.d.ts.map +1 -1
  54. package/dist/generated/builtins-manifest.js +256 -0
  55. package/dist/generated/builtins-manifest.js.map +1 -1
  56. package/dist/lsp/runmat_lsp.d.ts +2 -2
  57. package/dist/lsp/runmat_lsp.js +4 -4
  58. package/dist/lsp/runmat_lsp_bg.wasm +0 -0
  59. package/dist/lsp/runmat_lsp_bg.wasm.d.ts +2 -2
  60. package/dist/pkg-web/runmat_wasm_web.d.ts +4 -4
  61. package/dist/pkg-web/runmat_wasm_web.js +10 -10
  62. package/dist/pkg-web/runmat_wasm_web_bg.wasm +0 -0
  63. package/dist/pkg-web/runmat_wasm_web_bg.wasm.d.ts +4 -4
  64. package/dist/runtime/stdlib.snapshot +0 -0
  65. package/package.json +1 -1
@@ -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",
@@ -2760,6 +2779,25 @@ export const builtinManifest = [
2760
2779
  "summary": "Numerical gradients using central differences with MATLAB-compatible output ordering.",
2761
2780
  "exampleCount": 4
2762
2781
  },
2782
+ {
2783
+ "key": "gray2rgb",
2784
+ "title": "gray2rgb",
2785
+ "slug": "gray2rgb",
2786
+ "aliases": [],
2787
+ "category": "image/color",
2788
+ "categoryPath": [
2789
+ "image",
2790
+ "color"
2791
+ ],
2792
+ "keywords": [
2793
+ "gray2rgb",
2794
+ "grayscale",
2795
+ "rgb",
2796
+ "image"
2797
+ ],
2798
+ "summary": "Replicate a grayscale image into an RGB truecolor image.",
2799
+ "exampleCount": 1
2800
+ },
2763
2801
  {
2764
2802
  "key": "grid",
2765
2803
  "title": "grid",
@@ -2839,6 +2877,25 @@ export const builtinManifest = [
2839
2877
  "summary": "Generate a Hann window as an N-by-1 real column vector.",
2840
2878
  "exampleCount": 3
2841
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
+ },
2842
2899
  {
2843
2900
  "key": "hist",
2844
2901
  "title": "hist",
@@ -2979,6 +3036,27 @@ export const builtinManifest = [
2979
3036
  "summary": "Extract hour numbers from datetime values.",
2980
3037
  "exampleCount": 2
2981
3038
  },
3039
+ {
3040
+ "key": "hsv2rgb",
3041
+ "title": "hsv2rgb",
3042
+ "slug": "hsv2rgb",
3043
+ "aliases": [],
3044
+ "category": "image/color",
3045
+ "categoryPath": [
3046
+ "image",
3047
+ "color"
3048
+ ],
3049
+ "keywords": [
3050
+ "hsv2rgb",
3051
+ "hsv",
3052
+ "rgb",
3053
+ "color",
3054
+ "image",
3055
+ "colormap"
3056
+ ],
3057
+ "summary": "Convert HSV image or colormap values to RGB.",
3058
+ "exampleCount": 1
3059
+ },
2982
3060
  {
2983
3061
  "key": "hypot",
2984
3062
  "title": "hypot",
@@ -3058,6 +3136,69 @@ export const builtinManifest = [
3058
3136
  "summary": "Undo fftshift by moving the zero-frequency component back to the origin.",
3059
3137
  "exampleCount": 5
3060
3138
  },
3139
+ {
3140
+ "key": "im2double",
3141
+ "title": "im2double",
3142
+ "slug": "im2double",
3143
+ "aliases": [],
3144
+ "category": "image/color",
3145
+ "categoryPath": [
3146
+ "image",
3147
+ "color"
3148
+ ],
3149
+ "keywords": [
3150
+ "im2double",
3151
+ "image",
3152
+ "double",
3153
+ "uint8",
3154
+ "uint16",
3155
+ "convert"
3156
+ ],
3157
+ "summary": "Convert image data to double precision, scaling integer images into [0,1].",
3158
+ "exampleCount": 1
3159
+ },
3160
+ {
3161
+ "key": "im2uint16",
3162
+ "title": "im2uint16",
3163
+ "slug": "im2uint16",
3164
+ "aliases": [],
3165
+ "category": "image/color",
3166
+ "categoryPath": [
3167
+ "image",
3168
+ "color"
3169
+ ],
3170
+ "keywords": [
3171
+ "im2uint16",
3172
+ "image",
3173
+ "uint16",
3174
+ "double",
3175
+ "uint8",
3176
+ "convert"
3177
+ ],
3178
+ "summary": "Convert image data to uint16 using image scaling rules.",
3179
+ "exampleCount": 1
3180
+ },
3181
+ {
3182
+ "key": "im2uint8",
3183
+ "title": "im2uint8",
3184
+ "slug": "im2uint8",
3185
+ "aliases": [],
3186
+ "category": "image/color",
3187
+ "categoryPath": [
3188
+ "image",
3189
+ "color"
3190
+ ],
3191
+ "keywords": [
3192
+ "im2uint8",
3193
+ "image",
3194
+ "uint8",
3195
+ "double",
3196
+ "uint16",
3197
+ "convert"
3198
+ ],
3199
+ "summary": "Convert image data to uint8 using image scaling rules.",
3200
+ "exampleCount": 1
3201
+ },
3061
3202
  {
3062
3203
  "key": "imag",
3063
3204
  "title": "imag",
@@ -3185,6 +3326,26 @@ export const builtinManifest = [
3185
3326
  "summary": "Display grayscale, binary, truecolor, or file-backed images.",
3186
3327
  "exampleCount": 4
3187
3328
  },
3329
+ {
3330
+ "key": "ind2rgb",
3331
+ "title": "ind2rgb",
3332
+ "slug": "ind2rgb",
3333
+ "aliases": [],
3334
+ "category": "image/color",
3335
+ "categoryPath": [
3336
+ "image",
3337
+ "color"
3338
+ ],
3339
+ "keywords": [
3340
+ "ind2rgb",
3341
+ "indexed image",
3342
+ "colormap",
3343
+ "rgb",
3344
+ "image"
3345
+ ],
3346
+ "summary": "Convert indexed image data and a colormap to RGB truecolor data.",
3347
+ "exampleCount": 1
3348
+ },
3188
3349
  {
3189
3350
  "key": "ind2sub",
3190
3351
  "title": "ind2sub",
@@ -3814,6 +3975,27 @@ export const builtinManifest = [
3814
3975
  "summary": "Compute the Kronecker (tensor) product of two scalars, vectors, matrices, or N-D arrays.",
3815
3976
  "exampleCount": 7
3816
3977
  },
3978
+ {
3979
+ "key": "lab2rgb",
3980
+ "title": "lab2rgb",
3981
+ "slug": "lab2rgb",
3982
+ "aliases": [],
3983
+ "category": "image/color",
3984
+ "categoryPath": [
3985
+ "image",
3986
+ "color"
3987
+ ],
3988
+ "keywords": [
3989
+ "lab2rgb",
3990
+ "lab",
3991
+ "cielab",
3992
+ "rgb",
3993
+ "color",
3994
+ "image"
3995
+ ],
3996
+ "summary": "Convert CIE L*a*b* values to sRGB using D65 white.",
3997
+ "exampleCount": 1
3998
+ },
3817
3999
  {
3818
4000
  "key": "ldivide",
3819
4001
  "title": "ldivide",
@@ -5762,6 +5944,68 @@ export const builtinManifest = [
5762
5944
  "summary": "Propagate a caught exception without handling it locally.",
5763
5945
  "exampleCount": 2
5764
5946
  },
5947
+ {
5948
+ "key": "rgb2gray",
5949
+ "title": "rgb2gray",
5950
+ "slug": "rgb2gray",
5951
+ "aliases": [],
5952
+ "category": "image/color",
5953
+ "categoryPath": [
5954
+ "image",
5955
+ "color"
5956
+ ],
5957
+ "keywords": [
5958
+ "rgb2gray",
5959
+ "rgb",
5960
+ "grayscale",
5961
+ "luminance",
5962
+ "image"
5963
+ ],
5964
+ "summary": "Convert an RGB image to grayscale using luminance weights.",
5965
+ "exampleCount": 1
5966
+ },
5967
+ {
5968
+ "key": "rgb2hsv",
5969
+ "title": "rgb2hsv",
5970
+ "slug": "rgb2hsv",
5971
+ "aliases": [],
5972
+ "category": "image/color",
5973
+ "categoryPath": [
5974
+ "image",
5975
+ "color"
5976
+ ],
5977
+ "keywords": [
5978
+ "rgb2hsv",
5979
+ "rgb",
5980
+ "hsv",
5981
+ "color",
5982
+ "image",
5983
+ "colormap"
5984
+ ],
5985
+ "summary": "Convert RGB image or colormap values to HSV.",
5986
+ "exampleCount": 1
5987
+ },
5988
+ {
5989
+ "key": "rgb2lab",
5990
+ "title": "rgb2lab",
5991
+ "slug": "rgb2lab",
5992
+ "aliases": [],
5993
+ "category": "image/color",
5994
+ "categoryPath": [
5995
+ "image",
5996
+ "color"
5997
+ ],
5998
+ "keywords": [
5999
+ "rgb2lab",
6000
+ "rgb",
6001
+ "lab",
6002
+ "cielab",
6003
+ "color",
6004
+ "image"
6005
+ ],
6006
+ "summary": "Convert sRGB image or colormap values to CIE L*a*b* using D65 white.",
6007
+ "exampleCount": 1
6008
+ },
5765
6009
  {
5766
6010
  "key": "rmdir",
5767
6011
  "title": "rmdir",
@@ -7765,6 +8009,7 @@ export const builtinDocLoaders = {
7765
8009
  "class": () => import("./builtins/class.js").then((mod) => mod.default),
7766
8010
  "clc": () => import("./builtins/clc.js").then((mod) => mod.default),
7767
8011
  "clear": () => import("./builtins/clear.js").then((mod) => mod.default),
8012
+ "clearvars": () => import("./builtins/clearvars.js").then((mod) => mod.default),
7768
8013
  "clf": () => import("./builtins/clf.js").then((mod) => mod.default),
7769
8014
  "close": () => import("./builtins/close.js").then((mod) => mod.default),
7770
8015
  "colon": () => import("./builtins/colon.js").then((mod) => mod.default),
@@ -7864,10 +8109,12 @@ export const builtinDocLoaders = {
7864
8109
  "gpudevice": () => import("./builtins/gpuDevice.js").then((mod) => mod.default),
7865
8110
  "gpuinfo": () => import("./builtins/gpuInfo.js").then((mod) => mod.default),
7866
8111
  "gradient": () => import("./builtins/gradient.js").then((mod) => mod.default),
8112
+ "gray2rgb": () => import("./builtins/gray2rgb.js").then((mod) => mod.default),
7867
8113
  "grid": () => import("./builtins/grid.js").then((mod) => mod.default),
7868
8114
  "gt": () => import("./builtins/gt.js").then((mod) => mod.default),
7869
8115
  "hamming": () => import("./builtins/hamming.js").then((mod) => mod.default),
7870
8116
  "hann": () => import("./builtins/hann.js").then((mod) => mod.default),
8117
+ "heatmap": () => import("./builtins/heatmap.js").then((mod) => mod.default),
7871
8118
  "hist": () => import("./builtins/hist.js").then((mod) => mod.default),
7872
8119
  "histcounts": () => import("./builtins/histcounts.js").then((mod) => mod.default),
7873
8120
  "histcounts2": () => import("./builtins/histcounts2.js").then((mod) => mod.default),
@@ -7875,16 +8122,21 @@ export const builtinDocLoaders = {
7875
8122
  "hold": () => import("./builtins/hold.js").then((mod) => mod.default),
7876
8123
  "horzcat": () => import("./builtins/horzcat.js").then((mod) => mod.default),
7877
8124
  "hour": () => import("./builtins/hour.js").then((mod) => mod.default),
8125
+ "hsv2rgb": () => import("./builtins/hsv2rgb.js").then((mod) => mod.default),
7878
8126
  "hypot": () => import("./builtins/hypot.js").then((mod) => mod.default),
7879
8127
  "ifft": () => import("./builtins/ifft.js").then((mod) => mod.default),
7880
8128
  "ifft2": () => import("./builtins/ifft2.js").then((mod) => mod.default),
7881
8129
  "ifftshift": () => import("./builtins/ifftshift.js").then((mod) => mod.default),
8130
+ "im2double": () => import("./builtins/im2double.js").then((mod) => mod.default),
8131
+ "im2uint16": () => import("./builtins/im2uint16.js").then((mod) => mod.default),
8132
+ "im2uint8": () => import("./builtins/im2uint8.js").then((mod) => mod.default),
7882
8133
  "imag": () => import("./builtins/imag.js").then((mod) => mod.default),
7883
8134
  "image": () => import("./builtins/image.js").then((mod) => mod.default),
7884
8135
  "imagesc": () => import("./builtins/imagesc.js").then((mod) => mod.default),
7885
8136
  "imfilter": () => import("./builtins/imfilter.js").then((mod) => mod.default),
7886
8137
  "imread": () => import("./builtins/imread.js").then((mod) => mod.default),
7887
8138
  "imshow": () => import("./builtins/imshow.js").then((mod) => mod.default),
8139
+ "ind2rgb": () => import("./builtins/ind2rgb.js").then((mod) => mod.default),
7888
8140
  "ind2sub": () => import("./builtins/ind2sub.js").then((mod) => mod.default),
7889
8141
  "input": () => import("./builtins/input.js").then((mod) => mod.default),
7890
8142
  "interp1": () => import("./builtins/interp1.js").then((mod) => mod.default),
@@ -7916,6 +8168,7 @@ export const builtinDocLoaders = {
7916
8168
  "jsondecode": () => import("./builtins/jsondecode.js").then((mod) => mod.default),
7917
8169
  "jsonencode": () => import("./builtins/jsonencode.js").then((mod) => mod.default),
7918
8170
  "kron": () => import("./builtins/kron.js").then((mod) => mod.default),
8171
+ "lab2rgb": () => import("./builtins/lab2rgb.js").then((mod) => mod.default),
7919
8172
  "ldivide": () => import("./builtins/ldivide.js").then((mod) => mod.default),
7920
8173
  "le": () => import("./builtins/le.js").then((mod) => mod.default),
7921
8174
  "legend": () => import("./builtins/legend.js").then((mod) => mod.default),
@@ -8012,6 +8265,9 @@ export const builtinDocLoaders = {
8012
8265
  "repmat": () => import("./builtins/repmat.js").then((mod) => mod.default),
8013
8266
  "reshape": () => import("./builtins/reshape.js").then((mod) => mod.default),
8014
8267
  "rethrow": () => import("./builtins/rethrow.js").then((mod) => mod.default),
8268
+ "rgb2gray": () => import("./builtins/rgb2gray.js").then((mod) => mod.default),
8269
+ "rgb2hsv": () => import("./builtins/rgb2hsv.js").then((mod) => mod.default),
8270
+ "rgb2lab": () => import("./builtins/rgb2lab.js").then((mod) => mod.default),
8015
8271
  "rmdir": () => import("./builtins/rmdir.js").then((mod) => mod.default),
8016
8272
  "rmfield": () => import("./builtins/rmfield.js").then((mod) => mod.default),
8017
8273
  "rmpath": () => import("./builtins/rmpath.js").then((mod) => mod.default),