[RFC]: add assign
and strided
methods to math/base/special/csignumf
#6507
Labels
difficulty: 2
May require some initial design or R&D, but should be straightforward to resolve and/or implement.
Feature
Issue or pull request for adding a new feature.
JavaScript
Issue involves or relates to JavaScript.
Math
Issue or pull request specific to math functionality.
priority: Low
Low priority concern or feature request.
RFC
Request for comments. Feature requests and proposed changes.
Description
This RFC proposes adding an implementation for
csignumf.assign( re, im, out, strideOut, offsetOut )
andcsignumf.strided( z, sz, oz, out, so, oo )
inmath/base/special/csignumf
For
csignumf.assign( re, im, out, strideOut, offsetOut )
, the function supports the following parameters:re
: real component of the complex number.im
: imaginary component of the complex number.out
: output array.strideOut
: stride length forout
.offsetOut
: starting index forout
.For
csignumf.strided( z, sz, oz, out, so, oo )
, the function supports the following parameters:z
: complex number strided array view.sz
: stride length for z.oz
: starting index for z.out
: output array.so
: stride length for out.oo
: starting index for out.Related Issues
Reference implementation
Reference comment
Questions
No.
Other
No.
Checklist
RFC:
.The text was updated successfully, but these errors were encountered: