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
iterLinspace,"var it = iterLinspace( 0, 99, 100 );\nvar v = it.next().value\nv = it.next().value\n"
3084
3084
iterLn,"var it = iterLn( random.iterators.randu() );\nvar r = it.next().value\nr = it.next().value\n"
3085
3085
iterLog,"var x = random.iterators.uniform( 0.0, 100.0 );\nvar y = random.iterators.uniform( 0.0, 10.0 );\nvar it = iterLog( x, y );\nvar r = it.next().value\nr = it.next().value\n"
3086
+
iterLog1mexp,"var it = iterLog1mexp( random.iterators.randu() );\nvar r = it.next().value\nr = it.next().value\n"
3087
+
iterLog1p,"var it = iterLog1p( random.iterators.randu() );\nvar r = it.next().value\nr = it.next().value\n"
3086
3088
iterLog2,"var it = iterLog2( random.iterators.randu() );\nvar r = it.next().value\nr = it.next().value\n"
3087
3089
iterLog10,"var it = iterLog10( random.iterators.randu() );\nvar r = it.next().value\nr = it.next().value\n"
3088
-
iterLog1p,"var it = iterLog1p( random.iterators.randu() );\nvar r = it.next().value\nr = it.next().value\n"
3089
3090
iterLogspace,"var it = iterLogspace( 0, 3, 4 );\nvar v = it.next().value\nv = it.next().value\n"
3090
3091
iterLucasSeq,"var it = iterLucasSeq();\nvar v = it.next().value\nv = it.next().value\n"
3091
3092
iterMap,"function f( v ) { return v * 10.0; };\nvar it = iterMap( random.iterators.randu(), f );\nvar r = it.next().value\nr = it.next().value\n"
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/repl/help/data/data.csv
+1
Original file line number
Diff line number
Diff line change
@@ -3085,6 +3085,7 @@ iterLn,"\niterLn( iterator )\n Returns an iterator which iteratively evaluate
3085
3085
iterLog,"\niterLog( x, b )\n Returns an iterator which iteratively computes the base `b` logarithm.\n\n For negative `b` or `x` iterated values, the returned iterator returns\n `NaN`.\n\n The length of the returned iterator is equal to the length of the shortest\n provided iterator. In other words, the returned iterator ends once *one* of\n the provided iterators ends.\n\n If provided a numeric value as an iterator argument, the value is broadcast\n as an infinite iterator which always returns the provided value.\n\n If an environment supports Symbol.iterator and provided iterators are\n iterable, the returned iterator is iterable.\n\n Parameters\n ----------\n x: Object|number\n Input iterator.\n\n b: Object|number\n Input iterator.\n\n Returns\n -------\n iterator: Object\n Iterator.\n\n iterator.next(): Function\n Returns an iterator protocol-compliant object containing the next\n iterated value (if one exists) and a boolean flag indicating whether the\n iterator is finished.\n\n iterator.return( [value] ): Function\n Finishes an iterator and returns a provided value.\n\n Examples\n --------\n > var x = random.iterators.uniform( 0.0, 100.0 );\n > var y = random.iterators.uniform( 0.0, 10.0 );\n > var it = iterLog( x, y );\n > var r = it.next().value\n <number>\n > r = it.next().value\n <number>\n\n See Also\n --------\n base.log, iterLog10, iterLog1p, iterLog2, iterPow\n"
3086
3086
iterLog1mexp,"\niterLog1mexp( iterator )\n Returns an iterator which iteratively evaluates the natural logarithm of\n `1-exp(-|x|)`.\n\n If an environment supports Symbol.iterator and a provided iterator is\n iterable, the returned iterator is iterable.\n\n Parameters\n ----------\n iterator: Object\n Input iterator.\n\n Returns\n -------\n iterator: Object\n Iterator.\n\n iterator.next(): Function\n Returns an iterator protocol-compliant object containing the next\n iterated value (if one exists) and a boolean flag indicating whether the\n iterator is finished.\n\n iterator.return( [value] ): Function\n Finishes an iterator and returns a provided value.\n\n Examples\n --------\n > var it = iterLog1mexp( random.iterators.randu() );\n > var r = it.next().value\n <number>\n > r = it.next().value\n <number>\n\n See Also\n --------\n base.log1mexp, iterLog, iterLog1p, iterPow\n"
3087
3087
iterLog1p,"\niterLog1p( iterator )\n Returns an iterator which iteratively evaluates the natural logarithm of\n `1+x`.\n\n If an environment supports Symbol.iterator and a provided iterator is\n iterable, the returned iterator is iterable.\n\n Parameters\n ----------\n iterator: Object\n Input iterator.\n\n Returns\n -------\n iterator: Object\n Iterator.\n\n iterator.next(): Function\n Returns an iterator protocol-compliant object containing the next\n iterated value (if one exists) and a boolean flag indicating whether the\n iterator is finished.\n\n iterator.return( [value] ): Function\n Finishes an iterator and returns a provided value.\n\n Examples\n --------\n > var it = iterLog1p( random.iterators.randu() );\n > var r = it.next().value\n <number>\n > r = it.next().value\n <number>\n\n See Also\n --------\n base.log1p, iterLog, iterLog10, iterLog2, iterPow\n"
3088
+
iterLog1pexp,"\niterLog1pexp( iterator )\n Returns an iterator which iteratively evaluates the natural logarithm of\n `1+exp(x)`.\n\n If an environment supports Symbol.iterator and a provided iterator is\n iterable, the returned iterator is iterable.\n\n Parameters\n ----------\n iterator: Object\n Input iterator.\n\n Returns\n -------\n iterator: Object\n Iterator.\n\n iterator.next(): Function\n Returns an iterator protocol-compliant object containing the next\n iterated value (if one exists) and a boolean flag indicating whether the\n iterator is finished.\n\n iterator.return( [value] ): Function\n Finishes an iterator and returns a provided value.\n\n Examples\n --------\n > var it = iterLog1pexp( random.iterators.randu() );\n > var r = it.next().value\n <number>\n > r = it.next().value\n <number>\n\n See Also\n --------\n base.log1pexp, iterLog, iterLog1p, iterLog1mexp, iterPow\n"
3088
3089
iterLog2,"\niterLog2( iterator )\n Returns an iterator which iteratively evaluates the binary logarithm.\n\n If an environment supports Symbol.iterator and a provided iterator is\n iterable, the returned iterator is iterable.\n\n Parameters\n ----------\n iterator: Object\n Input iterator.\n\n Returns\n -------\n iterator: Object\n Iterator.\n\n iterator.next(): Function\n Returns an iterator protocol-compliant object containing the next\n iterated value (if one exists) and a boolean flag indicating whether the\n iterator is finished.\n\n iterator.return( [value] ): Function\n Finishes an iterator and returns a provided value.\n\n Examples\n --------\n > var it = iterLog2( random.iterators.randu() );\n > var r = it.next().value\n <number>\n > r = it.next().value\n <number>\n\n See Also\n --------\n base.log2, iterLog, iterLog10, iterLog1p, iterPow\n"
3089
3090
iterLog10,"\niterLog10( iterator )\n Returns an iterator which iteratively evaluates the common logarithm\n (logarithm with base 10).\n\n If an environment supports Symbol.iterator and a provided iterator is\n iterable, the returned iterator is iterable.\n\n Parameters\n ----------\n iterator: Object\n Input iterator.\n\n Returns\n -------\n iterator: Object\n Iterator.\n\n iterator.next(): Function\n Returns an iterator protocol-compliant object containing the next\n iterated value (if one exists) and a boolean flag indicating whether the\n iterator is finished.\n\n iterator.return( [value] ): Function\n Finishes an iterator and returns a provided value.\n\n Examples\n --------\n > var it = iterLog10( random.iterators.randu() );\n > var r = it.next().value\n <number>\n > r = it.next().value\n <number>\n\n See Also\n --------\n base.log10, iterLog, iterLog1p, iterLog2, iterPow\n"
3090
3091
iterLogspace,"\niterLogspace( start, stop[, N][, options] )\n Returns an iterator which returns evenly spaced numbers on a log scale.\n\n In linear space, the sequence starts at `base` raised to the power of\n `start` and ends with `base` raised to the power of `stop`.\n\n If an environment supports Symbol.iterator, the returned iterator is\n iterable.\n\n Parameters\n ----------\n start: number\n Exponent of starting value.\n\n stop: number\n Exponent of stopping value.\n\n N: integer (optional)\n Number of values. Default: 100.\n\n options: Object (optional)\n Function options.\n\n options.base: number (optional)\n Base of log space. Default: 10.\n\n Returns\n -------\n iterator: Object\n Iterator.\n\n iterator.next(): Function\n Returns an iterator protocol-compliant object containing the next\n iterated value (if one exists) and a boolean flag indicating whether the\n iterator is finished.\n\n iterator.return( [value] ): Function\n Finishes an iterator and returns a provided value.\n\n Examples\n --------\n > var it = iterLogspace( 0, 3, 4 );\n > var v = it.next().value\n 1\n > v = it.next().value\n 10\n\n See Also\n --------\n iterator2array, iterDatespace, iterIncrspace, iterLinspace, iterStep\n"
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/repl/info/data/data.csv
+2-1
Original file line number
Diff line number
Diff line change
@@ -3083,9 +3083,10 @@ iterLength,"\niterLength( iterator:Object )\n Consumes an entire iterator and
3083
3083
iterLinspace,"\niterLinspace( start:number, stop:number[, N:integer] )\n Returns an iterator which returns evenly spaced numbers over a specified\n interval.\n"
3084
3084
iterLn,"\niterLn( iterator:Object )\n Returns an iterator which iteratively evaluates the natural logarithm.\n"
3085
3085
iterLog,"\niterLog( x:Object|number, b:Object|number )\n Returns an iterator which iteratively computes the base `b` logarithm.\n"
3086
+
iterLog1mexp,"\niterLog1mexp( iterator:Object )\n Returns an iterator which iteratively evaluates the natural logarithm of\n `1-exp(-|x|)`.\n"
3087
+
iterLog1p,"\niterLog1p( iterator:Object )\n Returns an iterator which iteratively evaluates the natural logarithm of\n `1+x`.\n"
3086
3088
iterLog2,"\niterLog2( iterator:Object )\n Returns an iterator which iteratively evaluates the binary logarithm.\n"
3087
3089
iterLog10,"\niterLog10( iterator:Object )\n Returns an iterator which iteratively evaluates the common logarithm\n (logarithm with base 10).\n"
3088
-
iterLog1p,"\niterLog1p( iterator:Object )\n Returns an iterator which iteratively evaluates the natural logarithm of\n `1+x`.\n"
3089
3090
iterLogspace,"\niterLogspace( start:number, stop:number[, N:integer][, options:Object] )\n Returns an iterator which returns evenly spaced numbers on a log scale.\n"
3090
3091
iterLucasSeq,"\niterLucasSeq( [options:Object] )\n Returns an iterator which generates a Lucas sequence.\n"
3091
3092
iterMap,"\niterMap( iterator:Object, fcn:Function[, thisArg:any] )\n Returns an iterator which invokes a function for each iterated value.\n"
0 commit comments