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="signature">[`add3( z1, z2, z3 )`][@stdlib/complex/float32/base/add3]</span><spanclass="delimiter">: </span><spanclass="description">compute the sum of three single-precision complex floating-point numbers.</span>
61
62
- <spanclass="signature">[`identity( z )`][@stdlib/complex/float32/base/identity]</span><spanclass="delimiter">: </span><spanclass="description">evaluate the identity function of a single-precision complex floating-point number.</span>
63
+
- <spanclass="signature">[`muladd( alpha, x, y )`][@stdlib/complex/float32/base/mul-add]</span><spanclass="delimiter">: </span><spanclass="description">perform a multiply-add operation involving three single-precision complex floating-point numbers.</span>
- <spanclass="signature">[`neg( z )`][@stdlib/complex/float32/base/neg]</span><spanclass="delimiter">: </span><spanclass="description">negate a single-precision complex floating-point number.</span>
64
66
- <spanclass="signature">[`scale( alpha, c )`][@stdlib/complex/float32/base/scale]</span><spanclass="delimiter">: </span><spanclass="description">scale a single-precision complex floating-point number by a real-valued single-precision floating-point scalar constant.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/ndarray/base/README.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,6 +45,7 @@ var o = ns;
45
45
46
46
- <spanclass="signature">[`anyBy( arrays, predicate[, thisArg] )`][@stdlib/ndarray/base/any-by]</span><spanclass="delimiter">: </span><spanclass="description">test whether at least one element in an ndarray passes a test implemented by a predicate function.</span>
47
47
- <spanclass="signature">[`any( arrays )`][@stdlib/ndarray/base/any]</span><spanclass="delimiter">: </span><spanclass="description">test whether at least one element in an ndarray is truthy.</span>
48
+
- <spanclass="signature">[`assignScalar( arrays )`][@stdlib/ndarray/base/assign-scalar]</span><spanclass="delimiter">: </span><spanclass="description">assign a scalar value to every element of an output ndarray.</span>
48
49
- <spanclass="signature">[`assign( arrays )`][@stdlib/ndarray/base/assign]</span><spanclass="delimiter">: </span><spanclass="description">assign elements in an input ndarray to elements in an output ndarray.</span>
49
50
- <spanclass="signature">[`atleastnd( ndims, arrays )`][@stdlib/ndarray/base/atleastnd]</span><spanclass="delimiter">: </span><spanclass="description">convert a list of values (scalars and/or ndarrays) to ndarrays having at least a specified number of dimensions.</span>
50
51
- <spanclass="signature">[`binaryInputCastingDataType( idtype1, idtype2, odtype, policy )`][@stdlib/ndarray/base/binary-input-casting-dtype]</span><spanclass="delimiter">: </span><spanclass="description">resolve the casting data type for an input ndarray provided to a binary function.</span>
@@ -110,6 +111,7 @@ var o = ns;
110
111
- <spanclass="signature">[`array2ndarray( buf, order )`][@stdlib/ndarray/base/from-array]</span><spanclass="delimiter">: </span><spanclass="description">convert an array to a one-dimensional ndarray.</span>
111
112
- <spanclass="signature">[`scalar2ndarrayLike( x, value )`][@stdlib/ndarray/base/from-scalar-like]</span><spanclass="delimiter">: </span><spanclass="description">convert a scalar value to a zero-dimensional ndarray having the same data type as a provided ndarray.</span>
112
113
- <spanclass="signature">[`scalar2ndarray( value, dtype, order )`][@stdlib/ndarray/base/from-scalar]</span><spanclass="delimiter">: </span><spanclass="description">convert a scalar value to a zero-dimensional ndarray.</span>
114
+
- <spanclass="signature">[`full( value, dtype, shape, order )`][@stdlib/ndarray/base/full]</span><spanclass="delimiter">: </span><spanclass="description">create an ndarray filled with a specified value and having a specified shape and data type.</span>
113
115
- <spanclass="signature">[`includes( arrays )`][@stdlib/ndarray/base/includes]</span><spanclass="delimiter">: </span><spanclass="description">test whether an ndarray contains a specified value.</span>
114
116
- <spanclass="signature">[`ind( idx, max, mode )`][@stdlib/ndarray/base/ind]</span><spanclass="delimiter">: </span><spanclass="description">return an index given an index mode.</span>
115
117
- <spanclass="signature">[`ind2sub( shape, strides, offset, order, idx, mode )`][@stdlib/ndarray/base/ind2sub]</span><spanclass="delimiter">: </span><spanclass="description">convert a linear index to an array of subscripts.</span>
0 commit comments