runmat 0.4.6-dev.0 → 0.4.6-dev.2

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 (69) 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/exprnd.d.ts +4 -0
  6. package/dist/generated/builtins/exprnd.d.ts.map +1 -0
  7. package/dist/generated/builtins/exprnd.js +125 -0
  8. package/dist/generated/builtins/exprnd.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/hsv2rgb.d.ts +4 -0
  14. package/dist/generated/builtins/hsv2rgb.d.ts.map +1 -0
  15. package/dist/generated/builtins/hsv2rgb.js +66 -0
  16. package/dist/generated/builtins/hsv2rgb.js.map +1 -0
  17. package/dist/generated/builtins/im2double.d.ts +4 -0
  18. package/dist/generated/builtins/im2double.d.ts.map +1 -0
  19. package/dist/generated/builtins/im2double.js +67 -0
  20. package/dist/generated/builtins/im2double.js.map +1 -0
  21. package/dist/generated/builtins/im2uint16.d.ts +4 -0
  22. package/dist/generated/builtins/im2uint16.d.ts.map +1 -0
  23. package/dist/generated/builtins/im2uint16.js +70 -0
  24. package/dist/generated/builtins/im2uint16.js.map +1 -0
  25. package/dist/generated/builtins/im2uint8.d.ts +4 -0
  26. package/dist/generated/builtins/im2uint8.d.ts.map +1 -0
  27. package/dist/generated/builtins/im2uint8.js +70 -0
  28. package/dist/generated/builtins/im2uint8.js.map +1 -0
  29. package/dist/generated/builtins/ind2rgb.d.ts +4 -0
  30. package/dist/generated/builtins/ind2rgb.d.ts.map +1 -0
  31. package/dist/generated/builtins/ind2rgb.js +66 -0
  32. package/dist/generated/builtins/ind2rgb.js.map +1 -0
  33. package/dist/generated/builtins/lab2rgb.d.ts +4 -0
  34. package/dist/generated/builtins/lab2rgb.d.ts.map +1 -0
  35. package/dist/generated/builtins/lab2rgb.js +67 -0
  36. package/dist/generated/builtins/lab2rgb.js.map +1 -0
  37. package/dist/generated/builtins/normrnd.d.ts +4 -0
  38. package/dist/generated/builtins/normrnd.d.ts.map +1 -0
  39. package/dist/generated/builtins/normrnd.js +125 -0
  40. package/dist/generated/builtins/normrnd.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/unifrnd.d.ts +4 -0
  54. package/dist/generated/builtins/unifrnd.d.ts.map +1 -0
  55. package/dist/generated/builtins/unifrnd.js +124 -0
  56. package/dist/generated/builtins/unifrnd.js.map +1 -0
  57. package/dist/generated/builtins-manifest.d.ts.map +1 -1
  58. package/dist/generated/builtins-manifest.js +282 -0
  59. package/dist/generated/builtins-manifest.js.map +1 -1
  60. package/dist/lsp/runmat_lsp.d.ts +2 -2
  61. package/dist/lsp/runmat_lsp.js +4 -4
  62. package/dist/lsp/runmat_lsp_bg.wasm +0 -0
  63. package/dist/lsp/runmat_lsp_bg.wasm.d.ts +2 -2
  64. package/dist/pkg-web/runmat_wasm_web.d.ts +4 -4
  65. package/dist/pkg-web/runmat_wasm_web.js +10 -10
  66. package/dist/pkg-web/runmat_wasm_web_bg.wasm +0 -0
  67. package/dist/pkg-web/runmat_wasm_web_bg.wasm.d.ts +4 -4
  68. package/dist/runtime/stdlib.snapshot +0 -0
  69. package/package.json +1 -1
@@ -1803,6 +1803,28 @@ export const builtinManifest = [
1803
1803
  "summary": "Accurate element-wise computation of exp(x) - 1 for scalars, vectors, matrices, or N-D tensors.",
1804
1804
  "exampleCount": 5
1805
1805
  },
1806
+ {
1807
+ "key": "exprnd",
1808
+ "title": "exprnd",
1809
+ "slug": "exprnd",
1810
+ "aliases": [],
1811
+ "category": "stats/random",
1812
+ "categoryPath": [
1813
+ "stats",
1814
+ "random"
1815
+ ],
1816
+ "keywords": [
1817
+ "exprnd",
1818
+ "exponential",
1819
+ "random",
1820
+ "distribution",
1821
+ "statistics",
1822
+ "queueing",
1823
+ "poisson"
1824
+ ],
1825
+ "summary": "Exponentially-distributed random numbers with mean mu.",
1826
+ "exampleCount": 4
1827
+ },
1806
1828
  {
1807
1829
  "key": "extractbetween",
1808
1830
  "title": "extractBetween",
@@ -2738,6 +2760,25 @@ export const builtinManifest = [
2738
2760
  "summary": "Numerical gradients using central differences with MATLAB-compatible output ordering.",
2739
2761
  "exampleCount": 4
2740
2762
  },
2763
+ {
2764
+ "key": "gray2rgb",
2765
+ "title": "gray2rgb",
2766
+ "slug": "gray2rgb",
2767
+ "aliases": [],
2768
+ "category": "image/color",
2769
+ "categoryPath": [
2770
+ "image",
2771
+ "color"
2772
+ ],
2773
+ "keywords": [
2774
+ "gray2rgb",
2775
+ "grayscale",
2776
+ "rgb",
2777
+ "image"
2778
+ ],
2779
+ "summary": "Replicate a grayscale image into an RGB truecolor image.",
2780
+ "exampleCount": 1
2781
+ },
2741
2782
  {
2742
2783
  "key": "grid",
2743
2784
  "title": "grid",
@@ -2957,6 +2998,27 @@ export const builtinManifest = [
2957
2998
  "summary": "Extract hour numbers from datetime values.",
2958
2999
  "exampleCount": 2
2959
3000
  },
3001
+ {
3002
+ "key": "hsv2rgb",
3003
+ "title": "hsv2rgb",
3004
+ "slug": "hsv2rgb",
3005
+ "aliases": [],
3006
+ "category": "image/color",
3007
+ "categoryPath": [
3008
+ "image",
3009
+ "color"
3010
+ ],
3011
+ "keywords": [
3012
+ "hsv2rgb",
3013
+ "hsv",
3014
+ "rgb",
3015
+ "color",
3016
+ "image",
3017
+ "colormap"
3018
+ ],
3019
+ "summary": "Convert HSV image or colormap values to RGB.",
3020
+ "exampleCount": 1
3021
+ },
2960
3022
  {
2961
3023
  "key": "hypot",
2962
3024
  "title": "hypot",
@@ -3036,6 +3098,69 @@ export const builtinManifest = [
3036
3098
  "summary": "Undo fftshift by moving the zero-frequency component back to the origin.",
3037
3099
  "exampleCount": 5
3038
3100
  },
3101
+ {
3102
+ "key": "im2double",
3103
+ "title": "im2double",
3104
+ "slug": "im2double",
3105
+ "aliases": [],
3106
+ "category": "image/color",
3107
+ "categoryPath": [
3108
+ "image",
3109
+ "color"
3110
+ ],
3111
+ "keywords": [
3112
+ "im2double",
3113
+ "image",
3114
+ "double",
3115
+ "uint8",
3116
+ "uint16",
3117
+ "convert"
3118
+ ],
3119
+ "summary": "Convert image data to double precision, scaling integer images into [0,1].",
3120
+ "exampleCount": 1
3121
+ },
3122
+ {
3123
+ "key": "im2uint16",
3124
+ "title": "im2uint16",
3125
+ "slug": "im2uint16",
3126
+ "aliases": [],
3127
+ "category": "image/color",
3128
+ "categoryPath": [
3129
+ "image",
3130
+ "color"
3131
+ ],
3132
+ "keywords": [
3133
+ "im2uint16",
3134
+ "image",
3135
+ "uint16",
3136
+ "double",
3137
+ "uint8",
3138
+ "convert"
3139
+ ],
3140
+ "summary": "Convert image data to uint16 using image scaling rules.",
3141
+ "exampleCount": 1
3142
+ },
3143
+ {
3144
+ "key": "im2uint8",
3145
+ "title": "im2uint8",
3146
+ "slug": "im2uint8",
3147
+ "aliases": [],
3148
+ "category": "image/color",
3149
+ "categoryPath": [
3150
+ "image",
3151
+ "color"
3152
+ ],
3153
+ "keywords": [
3154
+ "im2uint8",
3155
+ "image",
3156
+ "uint8",
3157
+ "double",
3158
+ "uint16",
3159
+ "convert"
3160
+ ],
3161
+ "summary": "Convert image data to uint8 using image scaling rules.",
3162
+ "exampleCount": 1
3163
+ },
3039
3164
  {
3040
3165
  "key": "imag",
3041
3166
  "title": "imag",
@@ -3163,6 +3288,26 @@ export const builtinManifest = [
3163
3288
  "summary": "Display grayscale, binary, truecolor, or file-backed images.",
3164
3289
  "exampleCount": 4
3165
3290
  },
3291
+ {
3292
+ "key": "ind2rgb",
3293
+ "title": "ind2rgb",
3294
+ "slug": "ind2rgb",
3295
+ "aliases": [],
3296
+ "category": "image/color",
3297
+ "categoryPath": [
3298
+ "image",
3299
+ "color"
3300
+ ],
3301
+ "keywords": [
3302
+ "ind2rgb",
3303
+ "indexed image",
3304
+ "colormap",
3305
+ "rgb",
3306
+ "image"
3307
+ ],
3308
+ "summary": "Convert indexed image data and a colormap to RGB truecolor data.",
3309
+ "exampleCount": 1
3310
+ },
3166
3311
  {
3167
3312
  "key": "ind2sub",
3168
3313
  "title": "ind2sub",
@@ -3792,6 +3937,27 @@ export const builtinManifest = [
3792
3937
  "summary": "Compute the Kronecker (tensor) product of two scalars, vectors, matrices, or N-D arrays.",
3793
3938
  "exampleCount": 7
3794
3939
  },
3940
+ {
3941
+ "key": "lab2rgb",
3942
+ "title": "lab2rgb",
3943
+ "slug": "lab2rgb",
3944
+ "aliases": [],
3945
+ "category": "image/color",
3946
+ "categoryPath": [
3947
+ "image",
3948
+ "color"
3949
+ ],
3950
+ "keywords": [
3951
+ "lab2rgb",
3952
+ "lab",
3953
+ "cielab",
3954
+ "rgb",
3955
+ "color",
3956
+ "image"
3957
+ ],
3958
+ "summary": "Convert CIE L*a*b* values to sRGB using D65 white.",
3959
+ "exampleCount": 1
3960
+ },
3795
3961
  {
3796
3962
  "key": "ldivide",
3797
3963
  "title": "ldivide",
@@ -4651,6 +4817,27 @@ export const builtinManifest = [
4651
4817
  "summary": "Compute vector and matrix norms with MATLAB-compatible semantics, including Frobenius and nuclear norms.",
4652
4818
  "exampleCount": 6
4653
4819
  },
4820
+ {
4821
+ "key": "normrnd",
4822
+ "title": "normrnd",
4823
+ "slug": "normrnd",
4824
+ "aliases": [],
4825
+ "category": "stats/random",
4826
+ "categoryPath": [
4827
+ "stats",
4828
+ "random"
4829
+ ],
4830
+ "keywords": [
4831
+ "normrnd",
4832
+ "normal",
4833
+ "gaussian",
4834
+ "random",
4835
+ "distribution",
4836
+ "statistics"
4837
+ ],
4838
+ "summary": "Normally-distributed random numbers with mean mu and standard deviation sigma.",
4839
+ "exampleCount": 4
4840
+ },
4654
4841
  {
4655
4842
  "key": "not",
4656
4843
  "title": "not",
@@ -5719,6 +5906,68 @@ export const builtinManifest = [
5719
5906
  "summary": "Propagate a caught exception without handling it locally.",
5720
5907
  "exampleCount": 2
5721
5908
  },
5909
+ {
5910
+ "key": "rgb2gray",
5911
+ "title": "rgb2gray",
5912
+ "slug": "rgb2gray",
5913
+ "aliases": [],
5914
+ "category": "image/color",
5915
+ "categoryPath": [
5916
+ "image",
5917
+ "color"
5918
+ ],
5919
+ "keywords": [
5920
+ "rgb2gray",
5921
+ "rgb",
5922
+ "grayscale",
5923
+ "luminance",
5924
+ "image"
5925
+ ],
5926
+ "summary": "Convert an RGB image to grayscale using luminance weights.",
5927
+ "exampleCount": 1
5928
+ },
5929
+ {
5930
+ "key": "rgb2hsv",
5931
+ "title": "rgb2hsv",
5932
+ "slug": "rgb2hsv",
5933
+ "aliases": [],
5934
+ "category": "image/color",
5935
+ "categoryPath": [
5936
+ "image",
5937
+ "color"
5938
+ ],
5939
+ "keywords": [
5940
+ "rgb2hsv",
5941
+ "rgb",
5942
+ "hsv",
5943
+ "color",
5944
+ "image",
5945
+ "colormap"
5946
+ ],
5947
+ "summary": "Convert RGB image or colormap values to HSV.",
5948
+ "exampleCount": 1
5949
+ },
5950
+ {
5951
+ "key": "rgb2lab",
5952
+ "title": "rgb2lab",
5953
+ "slug": "rgb2lab",
5954
+ "aliases": [],
5955
+ "category": "image/color",
5956
+ "categoryPath": [
5957
+ "image",
5958
+ "color"
5959
+ ],
5960
+ "keywords": [
5961
+ "rgb2lab",
5962
+ "rgb",
5963
+ "lab",
5964
+ "cielab",
5965
+ "color",
5966
+ "image"
5967
+ ],
5968
+ "summary": "Convert sRGB image or colormap values to CIE L*a*b* using D65 white.",
5969
+ "exampleCount": 1
5970
+ },
5722
5971
  {
5723
5972
  "key": "rmdir",
5724
5973
  "title": "rmdir",
@@ -7280,6 +7529,26 @@ export const builtinManifest = [
7280
7529
  "summary": "Create logical arrays filled with true values.",
7281
7530
  "exampleCount": 3
7282
7531
  },
7532
+ {
7533
+ "key": "unifrnd",
7534
+ "title": "unifrnd",
7535
+ "slug": "unifrnd",
7536
+ "aliases": [],
7537
+ "category": "stats/random",
7538
+ "categoryPath": [
7539
+ "stats",
7540
+ "random"
7541
+ ],
7542
+ "keywords": [
7543
+ "unifrnd",
7544
+ "uniform",
7545
+ "random",
7546
+ "distribution",
7547
+ "statistics"
7548
+ ],
7549
+ "summary": "Uniformly-distributed random numbers on the interval [a, b).",
7550
+ "exampleCount": 4
7551
+ },
7283
7552
  {
7284
7553
  "key": "union",
7285
7554
  "title": "union",
@@ -7754,6 +8023,7 @@ export const builtinDocLoaders = {
7754
8023
  "exist": () => import("./builtins/exist.js").then((mod) => mod.default),
7755
8024
  "exp": () => import("./builtins/exp.js").then((mod) => mod.default),
7756
8025
  "expm1": () => import("./builtins/expm1.js").then((mod) => mod.default),
8026
+ "exprnd": () => import("./builtins/exprnd.js").then((mod) => mod.default),
7757
8027
  "extractbetween": () => import("./builtins/extractBetween.js").then((mod) => mod.default),
7758
8028
  "eye": () => import("./builtins/eye.js").then((mod) => mod.default),
7759
8029
  "factorial": () => import("./builtins/factorial.js").then((mod) => mod.default),
@@ -7800,6 +8070,7 @@ export const builtinDocLoaders = {
7800
8070
  "gpudevice": () => import("./builtins/gpuDevice.js").then((mod) => mod.default),
7801
8071
  "gpuinfo": () => import("./builtins/gpuInfo.js").then((mod) => mod.default),
7802
8072
  "gradient": () => import("./builtins/gradient.js").then((mod) => mod.default),
8073
+ "gray2rgb": () => import("./builtins/gray2rgb.js").then((mod) => mod.default),
7803
8074
  "grid": () => import("./builtins/grid.js").then((mod) => mod.default),
7804
8075
  "gt": () => import("./builtins/gt.js").then((mod) => mod.default),
7805
8076
  "hamming": () => import("./builtins/hamming.js").then((mod) => mod.default),
@@ -7811,16 +8082,21 @@ export const builtinDocLoaders = {
7811
8082
  "hold": () => import("./builtins/hold.js").then((mod) => mod.default),
7812
8083
  "horzcat": () => import("./builtins/horzcat.js").then((mod) => mod.default),
7813
8084
  "hour": () => import("./builtins/hour.js").then((mod) => mod.default),
8085
+ "hsv2rgb": () => import("./builtins/hsv2rgb.js").then((mod) => mod.default),
7814
8086
  "hypot": () => import("./builtins/hypot.js").then((mod) => mod.default),
7815
8087
  "ifft": () => import("./builtins/ifft.js").then((mod) => mod.default),
7816
8088
  "ifft2": () => import("./builtins/ifft2.js").then((mod) => mod.default),
7817
8089
  "ifftshift": () => import("./builtins/ifftshift.js").then((mod) => mod.default),
8090
+ "im2double": () => import("./builtins/im2double.js").then((mod) => mod.default),
8091
+ "im2uint16": () => import("./builtins/im2uint16.js").then((mod) => mod.default),
8092
+ "im2uint8": () => import("./builtins/im2uint8.js").then((mod) => mod.default),
7818
8093
  "imag": () => import("./builtins/imag.js").then((mod) => mod.default),
7819
8094
  "image": () => import("./builtins/image.js").then((mod) => mod.default),
7820
8095
  "imagesc": () => import("./builtins/imagesc.js").then((mod) => mod.default),
7821
8096
  "imfilter": () => import("./builtins/imfilter.js").then((mod) => mod.default),
7822
8097
  "imread": () => import("./builtins/imread.js").then((mod) => mod.default),
7823
8098
  "imshow": () => import("./builtins/imshow.js").then((mod) => mod.default),
8099
+ "ind2rgb": () => import("./builtins/ind2rgb.js").then((mod) => mod.default),
7824
8100
  "ind2sub": () => import("./builtins/ind2sub.js").then((mod) => mod.default),
7825
8101
  "input": () => import("./builtins/input.js").then((mod) => mod.default),
7826
8102
  "interp1": () => import("./builtins/interp1.js").then((mod) => mod.default),
@@ -7852,6 +8128,7 @@ export const builtinDocLoaders = {
7852
8128
  "jsondecode": () => import("./builtins/jsondecode.js").then((mod) => mod.default),
7853
8129
  "jsonencode": () => import("./builtins/jsonencode.js").then((mod) => mod.default),
7854
8130
  "kron": () => import("./builtins/kron.js").then((mod) => mod.default),
8131
+ "lab2rgb": () => import("./builtins/lab2rgb.js").then((mod) => mod.default),
7855
8132
  "ldivide": () => import("./builtins/ldivide.js").then((mod) => mod.default),
7856
8133
  "le": () => import("./builtins/le.js").then((mod) => mod.default),
7857
8134
  "legend": () => import("./builtins/legend.js").then((mod) => mod.default),
@@ -7894,6 +8171,7 @@ export const builtinDocLoaders = {
7894
8171
  "nextpow2": () => import("./builtins/nextpow2.js").then((mod) => mod.default),
7895
8172
  "nnz": () => import("./builtins/nnz.js").then((mod) => mod.default),
7896
8173
  "norm": () => import("./builtins/norm.js").then((mod) => mod.default),
8174
+ "normrnd": () => import("./builtins/normrnd.js").then((mod) => mod.default),
7897
8175
  "not": () => import("./builtins/not.js").then((mod) => mod.default),
7898
8176
  "num2str": () => import("./builtins/num2str.js").then((mod) => mod.default),
7899
8177
  "numel": () => import("./builtins/numel.js").then((mod) => mod.default),
@@ -7947,6 +8225,9 @@ export const builtinDocLoaders = {
7947
8225
  "repmat": () => import("./builtins/repmat.js").then((mod) => mod.default),
7948
8226
  "reshape": () => import("./builtins/reshape.js").then((mod) => mod.default),
7949
8227
  "rethrow": () => import("./builtins/rethrow.js").then((mod) => mod.default),
8228
+ "rgb2gray": () => import("./builtins/rgb2gray.js").then((mod) => mod.default),
8229
+ "rgb2hsv": () => import("./builtins/rgb2hsv.js").then((mod) => mod.default),
8230
+ "rgb2lab": () => import("./builtins/rgb2lab.js").then((mod) => mod.default),
7950
8231
  "rmdir": () => import("./builtins/rmdir.js").then((mod) => mod.default),
7951
8232
  "rmfield": () => import("./builtins/rmfield.js").then((mod) => mod.default),
7952
8233
  "rmpath": () => import("./builtins/rmpath.js").then((mod) => mod.default),
@@ -8025,6 +8306,7 @@ export const builtinDocLoaders = {
8025
8306
  "tril": () => import("./builtins/tril.js").then((mod) => mod.default),
8026
8307
  "triu": () => import("./builtins/triu.js").then((mod) => mod.default),
8027
8308
  "true": () => import("./builtins/true.js").then((mod) => mod.default),
8309
+ "unifrnd": () => import("./builtins/unifrnd.js").then((mod) => mod.default),
8028
8310
  "union": () => import("./builtins/union.js").then((mod) => mod.default),
8029
8311
  "unique": () => import("./builtins/unique.js").then((mod) => mod.default),
8030
8312
  "upper": () => import("./builtins/upper.js").then((mod) => mod.default),