You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<spanclass="cstat-no" title="statement not covered" > return factory;</span>
828
828
<spanclass="cstat-no" title="statement not covered" ></span>
829
829
<spanclass="cstat-no" title="statement not covered" > /**</span>
830
-
<spanclass="cstat-no" title="statement not covered" > * Returns a function for generating pseudorandom numbers drawn from a single-parameter probability distribution.</span>
830
+
<spanclass="cstat-no" title="statement not covered" > * Returns a function for generating pseudorandom values drawn from a unary PRNG.</span>
831
831
<spanclass="cstat-no" title="statement not covered" > *</span>
832
832
<spanclass="cstat-no" title="statement not covered" > * @private</span>
833
833
<spanclass="cstat-no" title="statement not covered" > * @param {Options} [options] - function options</span>
834
834
<spanclass="cstat-no" title="statement not covered" > * @param {PRNG} [options.prng] - pseudorandom number generator which generates uniformly distributed pseudorandom numbers</span>
835
-
<spanclass="cstat-no" title="statement not covered" > * @param {*} [options.seed] - pseudorandom number generator seed</span>
836
-
<spanclass="cstat-no" title="statement not covered" > * @param {*} [options.state] - pseudorandom number generator state</span>
837
-
<spanclass="cstat-no" title="statement not covered" > * @param {boolean} [options.copy] - boolean indicating whether to copy a provided pseudorandom number generator state</span>
835
+
<spanclass="cstat-no" title="statement not covered" > * @param {*} [options.seed] - pseudorandom value generator seed</span>
836
+
<spanclass="cstat-no" title="statement not covered" > * @param {*} [options.state] - pseudorandom value generator state</span>
837
+
<spanclass="cstat-no" title="statement not covered" > * @param {boolean} [options.copy] - boolean indicating whether to copy a provided pseudorandom value generator state</span>
838
838
<spanclass="cstat-no" title="statement not covered" > * @throws {TypeError} options argument must be an object</span>
839
839
<spanclass="cstat-no" title="statement not covered" > * @throws {TypeError} must provide valid options</span>
840
840
<spanclass="cstat-no" title="statement not covered" > * @throws {Error} must provide a valid state</span>
<spanclass="cstat-no" title="statement not covered" > return rand;</span>
872
872
<spanclass="cstat-no" title="statement not covered" ></span>
873
873
<spanclass="cstat-no" title="statement not covered" > /**</span>
874
-
<spanclass="cstat-no" title="statement not covered" > * Returns an ndarray filled with pseudorandom numbers drawn from a single-parameter probability distribution.</span>
874
+
<spanclass="cstat-no" title="statement not covered" > * Returns an ndarray filled with pseudorandom values drawn from a unary PRNG.</span>
875
875
<spanclass="cstat-no" title="statement not covered" > *</span>
876
876
<spanclass="cstat-no" title="statement not covered" > * @private</span>
<spanclass="cstat-no" title="statement not covered" > * @param {Options} [options] - function options</span>
880
880
<spanclass="cstat-no" title="statement not covered" > * @param {string} [options.dtype] - output data type</span>
881
881
<spanclass="cstat-no" title="statement not covered" > * @param {string} [options.order] - memory layout (either row-major or column-major)</span>
882
882
<spanclass="cstat-no" title="statement not covered" > * @param {string} [options.mode] - specifies how to handle indices which exceed ndarray dimensions</span>
883
883
<spanclass="cstat-no" title="statement not covered" > * @param {StringArray} [options.submode] - specifies how to handle subscripts which exceed ndarray dimensions on a per dimension basis</span>
884
884
<spanclass="cstat-no" title="statement not covered" > * @param {boolean} [options.readonly] - boolean indicating whether an ndarray should be read-only</span>
885
885
<spanclass="cstat-no" title="statement not covered" > * @throws {TypeError} first argument must be a valid shape</span>
886
-
<spanclass="cstat-no" title="statement not covered" > * @throws {TypeError} must provide valid distribution parameters</span>
887
-
<spanclass="cstat-no" title="statement not covered" > * @throws {TypeError} distribution parameters and the desired shape must be broadcast compatible</span>
886
+
<spanclass="cstat-no" title="statement not covered" > * @throws {TypeError} must provide valid PRNG parameters</span>
887
+
<spanclass="cstat-no" title="statement not covered" > * @throws {TypeError} PRNG parameters and the desired shape must be broadcast compatible</span>
888
888
<spanclass="cstat-no" title="statement not covered" > * @throws {TypeError} options argument must be an object</span>
889
889
<spanclass="cstat-no" title="statement not covered" > * @throws {TypeError} must provide valid options</span>
890
890
<spanclass="cstat-no" title="statement not covered" > * @returns {ndarray} output array</span>
<spanclass="cstat-no" title="statement not covered" > }</span>
898
898
<spanclass="cstat-no" title="statement not covered" ></span>
899
899
<spanclass="cstat-no" title="statement not covered" > /**</span>
900
-
<spanclass="cstat-no" title="statement not covered" > * Fills an ndarray with pseudorandom numbers drawn from a single-parameter probability distribution.</span>
900
+
<spanclass="cstat-no" title="statement not covered" > * Fills an ndarray with pseudorandom values drawn from a unary PRNG.</span>
901
901
<spanclass="cstat-no" title="statement not covered" > *</span>
902
902
<spanclass="cstat-no" title="statement not covered" > * @private</span>
903
-
<spanclass="cstat-no" title="statement not covered" > * @param {(number|ComplexLike|ndarrayLike)} param1 - distribution parameter</span>
<spanclass="cstat-no" title="statement not covered" > * @param {ndarrayLike} out - output ndarray</span>
905
905
<spanclass="cstat-no" title="statement not covered" > * @throws {TypeError} second argument must be an ndarray</span>
906
-
<spanclass="cstat-no" title="statement not covered" > * @throws {TypeError} must provide valid distribution parameters</span>
907
-
<spanclass="cstat-no" title="statement not covered" > * @throws {TypeError} distribution parameters and the output ndarray must be broadcast compatible</span>
906
+
<spanclass="cstat-no" title="statement not covered" > * @throws {TypeError} must provide valid PRNG parameters</span>
907
+
<spanclass="cstat-no" title="statement not covered" > * @throws {TypeError} PRNG parameters and the output ndarray must be broadcast compatible</span>
908
908
<spanclass="cstat-no" title="statement not covered" > * @returns {ndarray} output ndarray</span>
909
909
<spanclass="cstat-no" title="statement not covered" > */</span>
910
910
<spanclass="cstat-no" title="statement not covered" > function assign( param1, out ) {</span>
0 commit comments