runmat 0.4.5 → 0.4.6-dev.1
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/exprnd.d.ts +4 -0
- package/dist/generated/builtins/exprnd.d.ts.map +1 -0
- package/dist/generated/builtins/exprnd.js +125 -0
- package/dist/generated/builtins/exprnd.js.map +1 -0
- package/dist/generated/builtins/normrnd.d.ts +4 -0
- package/dist/generated/builtins/normrnd.d.ts.map +1 -0
- package/dist/generated/builtins/normrnd.js +125 -0
- package/dist/generated/builtins/normrnd.js.map +1 -0
- package/dist/generated/builtins/ode15s.d.ts +4 -0
- package/dist/generated/builtins/ode15s.d.ts.map +1 -0
- package/dist/generated/builtins/ode15s.js +71 -0
- package/dist/generated/builtins/ode15s.js.map +1 -0
- package/dist/generated/builtins/ode23.d.ts +4 -0
- package/dist/generated/builtins/ode23.d.ts.map +1 -0
- package/dist/generated/builtins/ode23.js +71 -0
- package/dist/generated/builtins/ode23.js.map +1 -0
- package/dist/generated/builtins/ode45.d.ts +4 -0
- package/dist/generated/builtins/ode45.d.ts.map +1 -0
- package/dist/generated/builtins/ode45.js +71 -0
- package/dist/generated/builtins/ode45.js.map +1 -0
- package/dist/generated/builtins/unifrnd.d.ts +4 -0
- package/dist/generated/builtins/unifrnd.d.ts.map +1 -0
- package/dist/generated/builtins/unifrnd.js +124 -0
- package/dist/generated/builtins/unifrnd.js.map +1 -0
- package/dist/generated/builtins-manifest.d.ts.map +1 -1
- package/dist/generated/builtins-manifest.js +129 -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 +4 -4
- package/dist/pkg-web/runmat_wasm_web.js +10 -10
- package/dist/pkg-web/runmat_wasm_web_bg.wasm +0 -0
- package/dist/pkg-web/runmat_wasm_web_bg.wasm.d.ts +4 -4
- package/dist/runtime/stdlib.snapshot +0 -0
- package/package.json +1 -1
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
// @generated by scripts/generate-builtins.cjs
|
|
2
|
+
// Do not edit by hand.
|
|
3
|
+
const builtinDoc = {
|
|
4
|
+
"title": "unifrnd",
|
|
5
|
+
"category": "stats/random",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"unifrnd",
|
|
8
|
+
"uniform",
|
|
9
|
+
"random",
|
|
10
|
+
"distribution",
|
|
11
|
+
"statistics"
|
|
12
|
+
],
|
|
13
|
+
"summary": "Uniformly-distributed random numbers on the interval [a, b).",
|
|
14
|
+
"references": [],
|
|
15
|
+
"gpu_support": {
|
|
16
|
+
"elementwise": false,
|
|
17
|
+
"reduction": false,
|
|
18
|
+
"precisions": [
|
|
19
|
+
"f64"
|
|
20
|
+
],
|
|
21
|
+
"broadcasting": "none",
|
|
22
|
+
"notes": "Uses the provider random_unifrnd hook (Philox CSPRNG + affine scaling) when an F64-precision provider is active. F32 providers and providers without the hook fall back to host generation."
|
|
23
|
+
},
|
|
24
|
+
"fusion": {
|
|
25
|
+
"elementwise": false,
|
|
26
|
+
"reduction": false,
|
|
27
|
+
"max_inputs": 0,
|
|
28
|
+
"constants": "none"
|
|
29
|
+
},
|
|
30
|
+
"requires_feature": null,
|
|
31
|
+
"tested": {
|
|
32
|
+
"unit": "builtins::stats::random::unifrnd::tests",
|
|
33
|
+
"integration": null
|
|
34
|
+
},
|
|
35
|
+
"description": "`unifrnd` draws pseudorandom samples from the continuous uniform distribution on the half-open interval `[a, b)`. It is part of the **Statistics and Machine Learning Toolbox** family in MATLAB and Octave's `statistics` package. RunMat implements it by scaling base uniform variates as `r = a + (b - a) * U` where `U ~ Uniform(0, 1)`.",
|
|
36
|
+
"behaviors": [
|
|
37
|
+
"`unifrnd(a, b)` returns a scalar double drawn from `Uniform(a, b)`.",
|
|
38
|
+
"`unifrnd(a, b, n)` returns an `n × n` matrix of samples.",
|
|
39
|
+
"`unifrnd(a, b, m, n)` returns an `m × n` matrix of samples.",
|
|
40
|
+
"`unifrnd(a, b, sz)` accepts a size vector and returns an array with shape `sz`.",
|
|
41
|
+
"`a` and `b` must be scalar numeric values.",
|
|
42
|
+
"`a` must be less than `b`; `unifrnd` errors if `a >= b`.",
|
|
43
|
+
"All outputs are double precision regardless of input type."
|
|
44
|
+
],
|
|
45
|
+
"examples": [
|
|
46
|
+
{
|
|
47
|
+
"description": "Single sample from Uniform(2, 5)",
|
|
48
|
+
"input": "rng(0);\nr = unifrnd(2, 5)"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"description": "Matrix of random values between -1 and 1",
|
|
52
|
+
"input": "rng(0);\nX = unifrnd(-1, 1, 2, 3)"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"description": "Monte Carlo samples for uncertain input bounds",
|
|
56
|
+
"input": "rng(0);\nlow = 10; high = 20;\nsamples = unifrnd(low, high, 1, 5)"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"description": "Specifying dimensions with a size vector",
|
|
60
|
+
"input": "rng(0);\nT = unifrnd(0, 100, [2 3])"
|
|
61
|
+
}
|
|
62
|
+
],
|
|
63
|
+
"faqs": [
|
|
64
|
+
{
|
|
65
|
+
"question": "Are the bounds inclusive?",
|
|
66
|
+
"answer": "RunMat generates samples on the half-open interval `[a, b)`: values can be equal to `a`, but are always strictly less than `b`."
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"question": "What is the workaround if unifrnd is unavailable?",
|
|
70
|
+
"answer": "`unifrnd(a, b)` is mathematically equivalent to `a + (b - a) * rand()`. For arrays, use `a + (b - a) * rand(sz)` with the same requested size."
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"question": "Why must a be less than b?",
|
|
74
|
+
"answer": "A continuous uniform distribution needs a positive-width interval. `unifrnd` raises an error if `a >= b` to catch invalid bounds early."
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"question": "What use cases does unifrnd support?",
|
|
78
|
+
"answer": "Common uses include Monte Carlo sampling, randomized initial conditions, parameter sweeps over bounded ranges, simulation inputs, and continuous random perturbations."
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"question": "Does unifrnd fuse with other operations?",
|
|
82
|
+
"answer": "No. Random generation is excluded from fusion planning to preserve statistical properties."
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"question": "How do I control reproducibility?",
|
|
86
|
+
"answer": "Use `rng` before calling `unifrnd` to seed the global generator."
|
|
87
|
+
}
|
|
88
|
+
],
|
|
89
|
+
"links": [
|
|
90
|
+
{
|
|
91
|
+
"label": "exprnd",
|
|
92
|
+
"url": "./exprnd"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"label": "normrnd",
|
|
96
|
+
"url": "./normrnd"
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"label": "rand",
|
|
100
|
+
"url": "./rand"
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"label": "randn",
|
|
104
|
+
"url": "./randn"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"label": "rng",
|
|
108
|
+
"url": "./rng"
|
|
109
|
+
}
|
|
110
|
+
],
|
|
111
|
+
"source": {
|
|
112
|
+
"label": "`crates/runmat-runtime/src/builtins/stats/random/unifrnd.rs`",
|
|
113
|
+
"url": "https://github.com/runmat-org/runmat/blob/main/crates/runmat-runtime/src/builtins/stats/random/unifrnd.rs"
|
|
114
|
+
},
|
|
115
|
+
"key": "unifrnd",
|
|
116
|
+
"slug": "unifrnd",
|
|
117
|
+
"aliases": [],
|
|
118
|
+
"categoryPath": [
|
|
119
|
+
"stats",
|
|
120
|
+
"random"
|
|
121
|
+
]
|
|
122
|
+
};
|
|
123
|
+
export default builtinDoc;
|
|
124
|
+
//# sourceMappingURL=unifrnd.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"unifrnd.js","sourceRoot":"","sources":["../../../src/generated/builtins/unifrnd.ts"],"names":[],"mappings":"AAAA,8CAA8C;AAC9C,uBAAuB;AAIvB,MAAM,UAAU,GAAe;IAC7B,OAAO,EAAE,SAAS;IAClB,UAAU,EAAE,cAAc;IAC1B,UAAU,EAAE;QACV,SAAS;QACT,SAAS;QACT,QAAQ;QACR,cAAc;QACd,YAAY;KACb;IACD,SAAS,EAAE,8DAA8D;IACzE,YAAY,EAAE,EAAE;IAChB,aAAa,EAAE;QACb,aAAa,EAAE,KAAK;QACpB,WAAW,EAAE,KAAK;QAClB,YAAY,EAAE;YACZ,KAAK;SACN;QACD,cAAc,EAAE,MAAM;QACtB,OAAO,EAAE,6LAA6L;KACvM;IACD,QAAQ,EAAE;QACR,aAAa,EAAE,KAAK;QACpB,WAAW,EAAE,KAAK;QAClB,YAAY,EAAE,CAAC;QACf,WAAW,EAAE,MAAM;KACpB;IACD,kBAAkB,EAAE,IAAI;IACxB,QAAQ,EAAE;QACR,MAAM,EAAE,yCAAyC;QACjD,aAAa,EAAE,IAAI;KACpB;IACD,aAAa,EAAE,+UAA+U;IAC9V,WAAW,EAAE;QACX,qEAAqE;QACrE,0DAA0D;QAC1D,6DAA6D;QAC7D,iFAAiF;QACjF,4CAA4C;QAC5C,0DAA0D;QAC1D,4DAA4D;KAC7D;IACD,UAAU,EAAE;QACV;YACE,aAAa,EAAE,kCAAkC;YACjD,OAAO,EAAE,4BAA4B;SACtC;QACD;YACE,aAAa,EAAE,0CAA0C;YACzD,OAAO,EAAE,mCAAmC;SAC7C;QACD;YACE,aAAa,EAAE,gDAAgD;YAC/D,OAAO,EAAE,mEAAmE;SAC7E;QACD;YACE,aAAa,EAAE,0CAA0C;YACzD,OAAO,EAAE,qCAAqC;SAC/C;KACF;IACD,MAAM,EAAE;QACN;YACE,UAAU,EAAE,2BAA2B;YACvC,QAAQ,EAAE,iIAAiI;SAC5I;QACD;YACE,UAAU,EAAE,mDAAmD;YAC/D,QAAQ,EAAE,gJAAgJ;SAC3J;QACD;YACE,UAAU,EAAE,4BAA4B;YACxC,QAAQ,EAAE,yIAAyI;SACpJ;QACD;YACE,UAAU,EAAE,sCAAsC;YAClD,QAAQ,EAAE,wKAAwK;SACnL;QACD;YACE,UAAU,EAAE,0CAA0C;YACtD,QAAQ,EAAE,4FAA4F;SACvG;QACD;YACE,UAAU,EAAE,mCAAmC;YAC/C,QAAQ,EAAE,kEAAkE;SAC7E;KACF;IACD,OAAO,EAAE;QACP;YACE,OAAO,EAAE,QAAQ;YACjB,KAAK,EAAE,UAAU;SAClB;QACD;YACE,OAAO,EAAE,SAAS;YAClB,KAAK,EAAE,WAAW;SACnB;QACD;YACE,OAAO,EAAE,MAAM;YACf,KAAK,EAAE,QAAQ;SAChB;QACD;YACE,OAAO,EAAE,OAAO;YAChB,KAAK,EAAE,SAAS;SACjB;QACD;YACE,OAAO,EAAE,KAAK;YACd,KAAK,EAAE,OAAO;SACf;KACF;IACD,QAAQ,EAAE;QACR,OAAO,EAAE,8DAA8D;QACvE,KAAK,EAAE,2GAA2G;KACnH;IACD,KAAK,EAAE,SAAS;IAChB,MAAM,EAAE,SAAS;IACjB,SAAS,EAAE,EAAE;IACb,cAAc,EAAE;QACd,OAAO;QACP,QAAQ;KACT;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,EA8iPjD,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,MAAM,CAAC,MAAM,EAAE,gBAAgB,CA+X9D,CAAC;AAEF,eAAO,MAAM,4BAA4B,sEAC0C,CAAC"}
|
|
@@ -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",
|
|
@@ -4651,6 +4673,27 @@ export const builtinManifest = [
|
|
|
4651
4673
|
"summary": "Compute vector and matrix norms with MATLAB-compatible semantics, including Frobenius and nuclear norms.",
|
|
4652
4674
|
"exampleCount": 6
|
|
4653
4675
|
},
|
|
4676
|
+
{
|
|
4677
|
+
"key": "normrnd",
|
|
4678
|
+
"title": "normrnd",
|
|
4679
|
+
"slug": "normrnd",
|
|
4680
|
+
"aliases": [],
|
|
4681
|
+
"category": "stats/random",
|
|
4682
|
+
"categoryPath": [
|
|
4683
|
+
"stats",
|
|
4684
|
+
"random"
|
|
4685
|
+
],
|
|
4686
|
+
"keywords": [
|
|
4687
|
+
"normrnd",
|
|
4688
|
+
"normal",
|
|
4689
|
+
"gaussian",
|
|
4690
|
+
"random",
|
|
4691
|
+
"distribution",
|
|
4692
|
+
"statistics"
|
|
4693
|
+
],
|
|
4694
|
+
"summary": "Normally-distributed random numbers with mean mu and standard deviation sigma.",
|
|
4695
|
+
"exampleCount": 4
|
|
4696
|
+
},
|
|
4654
4697
|
{
|
|
4655
4698
|
"key": "not",
|
|
4656
4699
|
"title": "not",
|
|
@@ -4711,6 +4754,66 @@ export const builtinManifest = [
|
|
|
4711
4754
|
"summary": "Count the number of elements in scalars, vectors, matrices, and N-D arrays.",
|
|
4712
4755
|
"exampleCount": 5
|
|
4713
4756
|
},
|
|
4757
|
+
{
|
|
4758
|
+
"key": "ode15s",
|
|
4759
|
+
"title": "ode15s",
|
|
4760
|
+
"slug": "ode15s",
|
|
4761
|
+
"aliases": [],
|
|
4762
|
+
"category": "math/ode",
|
|
4763
|
+
"categoryPath": [
|
|
4764
|
+
"math",
|
|
4765
|
+
"ode"
|
|
4766
|
+
],
|
|
4767
|
+
"keywords": [
|
|
4768
|
+
"ode15s",
|
|
4769
|
+
"ode",
|
|
4770
|
+
"stiff",
|
|
4771
|
+
"implicit",
|
|
4772
|
+
"adaptive step"
|
|
4773
|
+
],
|
|
4774
|
+
"summary": "Solve stiff ordinary differential equations with an adaptive implicit host-side integrator.",
|
|
4775
|
+
"exampleCount": 1
|
|
4776
|
+
},
|
|
4777
|
+
{
|
|
4778
|
+
"key": "ode23",
|
|
4779
|
+
"title": "ode23",
|
|
4780
|
+
"slug": "ode23",
|
|
4781
|
+
"aliases": [],
|
|
4782
|
+
"category": "math/ode",
|
|
4783
|
+
"categoryPath": [
|
|
4784
|
+
"math",
|
|
4785
|
+
"ode"
|
|
4786
|
+
],
|
|
4787
|
+
"keywords": [
|
|
4788
|
+
"ode23",
|
|
4789
|
+
"ode",
|
|
4790
|
+
"nonstiff",
|
|
4791
|
+
"Bogacki-Shampine",
|
|
4792
|
+
"adaptive step"
|
|
4793
|
+
],
|
|
4794
|
+
"summary": "Solve nonstiff ordinary differential equations with an adaptive Bogacki-Shampine 3(2) method.",
|
|
4795
|
+
"exampleCount": 1
|
|
4796
|
+
},
|
|
4797
|
+
{
|
|
4798
|
+
"key": "ode45",
|
|
4799
|
+
"title": "ode45",
|
|
4800
|
+
"slug": "ode45",
|
|
4801
|
+
"aliases": [],
|
|
4802
|
+
"category": "math/ode",
|
|
4803
|
+
"categoryPath": [
|
|
4804
|
+
"math",
|
|
4805
|
+
"ode"
|
|
4806
|
+
],
|
|
4807
|
+
"keywords": [
|
|
4808
|
+
"ode45",
|
|
4809
|
+
"ode",
|
|
4810
|
+
"nonstiff",
|
|
4811
|
+
"Dormand-Prince",
|
|
4812
|
+
"adaptive step"
|
|
4813
|
+
],
|
|
4814
|
+
"summary": "Solve nonstiff ordinary differential equations with an adaptive Dormand-Prince 5(4) method.",
|
|
4815
|
+
"exampleCount": 1
|
|
4816
|
+
},
|
|
4714
4817
|
{
|
|
4715
4818
|
"key": "ones",
|
|
4716
4819
|
"title": "ones",
|
|
@@ -7220,6 +7323,26 @@ export const builtinManifest = [
|
|
|
7220
7323
|
"summary": "Create logical arrays filled with true values.",
|
|
7221
7324
|
"exampleCount": 3
|
|
7222
7325
|
},
|
|
7326
|
+
{
|
|
7327
|
+
"key": "unifrnd",
|
|
7328
|
+
"title": "unifrnd",
|
|
7329
|
+
"slug": "unifrnd",
|
|
7330
|
+
"aliases": [],
|
|
7331
|
+
"category": "stats/random",
|
|
7332
|
+
"categoryPath": [
|
|
7333
|
+
"stats",
|
|
7334
|
+
"random"
|
|
7335
|
+
],
|
|
7336
|
+
"keywords": [
|
|
7337
|
+
"unifrnd",
|
|
7338
|
+
"uniform",
|
|
7339
|
+
"random",
|
|
7340
|
+
"distribution",
|
|
7341
|
+
"statistics"
|
|
7342
|
+
],
|
|
7343
|
+
"summary": "Uniformly-distributed random numbers on the interval [a, b).",
|
|
7344
|
+
"exampleCount": 4
|
|
7345
|
+
},
|
|
7223
7346
|
{
|
|
7224
7347
|
"key": "union",
|
|
7225
7348
|
"title": "union",
|
|
@@ -7694,6 +7817,7 @@ export const builtinDocLoaders = {
|
|
|
7694
7817
|
"exist": () => import("./builtins/exist.js").then((mod) => mod.default),
|
|
7695
7818
|
"exp": () => import("./builtins/exp.js").then((mod) => mod.default),
|
|
7696
7819
|
"expm1": () => import("./builtins/expm1.js").then((mod) => mod.default),
|
|
7820
|
+
"exprnd": () => import("./builtins/exprnd.js").then((mod) => mod.default),
|
|
7697
7821
|
"extractbetween": () => import("./builtins/extractBetween.js").then((mod) => mod.default),
|
|
7698
7822
|
"eye": () => import("./builtins/eye.js").then((mod) => mod.default),
|
|
7699
7823
|
"factorial": () => import("./builtins/factorial.js").then((mod) => mod.default),
|
|
@@ -7834,9 +7958,13 @@ export const builtinDocLoaders = {
|
|
|
7834
7958
|
"nextpow2": () => import("./builtins/nextpow2.js").then((mod) => mod.default),
|
|
7835
7959
|
"nnz": () => import("./builtins/nnz.js").then((mod) => mod.default),
|
|
7836
7960
|
"norm": () => import("./builtins/norm.js").then((mod) => mod.default),
|
|
7961
|
+
"normrnd": () => import("./builtins/normrnd.js").then((mod) => mod.default),
|
|
7837
7962
|
"not": () => import("./builtins/not.js").then((mod) => mod.default),
|
|
7838
7963
|
"num2str": () => import("./builtins/num2str.js").then((mod) => mod.default),
|
|
7839
7964
|
"numel": () => import("./builtins/numel.js").then((mod) => mod.default),
|
|
7965
|
+
"ode15s": () => import("./builtins/ode15s.js").then((mod) => mod.default),
|
|
7966
|
+
"ode23": () => import("./builtins/ode23.js").then((mod) => mod.default),
|
|
7967
|
+
"ode45": () => import("./builtins/ode45.js").then((mod) => mod.default),
|
|
7840
7968
|
"ones": () => import("./builtins/ones.js").then((mod) => mod.default),
|
|
7841
7969
|
"optimset": () => import("./builtins/optimset.js").then((mod) => mod.default),
|
|
7842
7970
|
"or": () => import("./builtins/or.js").then((mod) => mod.default),
|
|
@@ -7962,6 +8090,7 @@ export const builtinDocLoaders = {
|
|
|
7962
8090
|
"tril": () => import("./builtins/tril.js").then((mod) => mod.default),
|
|
7963
8091
|
"triu": () => import("./builtins/triu.js").then((mod) => mod.default),
|
|
7964
8092
|
"true": () => import("./builtins/true.js").then((mod) => mod.default),
|
|
8093
|
+
"unifrnd": () => import("./builtins/unifrnd.js").then((mod) => mod.default),
|
|
7965
8094
|
"union": () => import("./builtins/union.js").then((mod) => mod.default),
|
|
7966
8095
|
"unique": () => import("./builtins/unique.js").then((mod) => mod.default),
|
|
7967
8096
|
"upper": () => import("./builtins/upper.js").then((mod) => mod.default),
|