Class Kwargs
- Namespace
- NumSharp
- Assembly
- NumSharp.dll
public class Kwargs
- Inheritance
-
Kwargs
- Inherited Members
- Extension Methods
Constructors
Kwargs()
public Kwargs()
Kwargs(string, bool, bool)
Kwargs constructor
public Kwargs(string indexing, bool sparse, bool copy)
Parameters
indexingstring{'xy', 'ij'}, optional Cartesian('xy', default) or matrix('ij') indexing of output.
sparseboolIf True a sparse grid is returned in order to conserve memory. Default is False.
copyboolIf False, a view into the original arrays are returned in order to conserve memory. Default is True.Please note that sparse= False, copy= False`` will likely return non-contiguous arrays.
Furthermore, more than one element of a broadcast array may refer to a single memory location. If you need to write to the arrays, make copies first.
Properties
copy
public bool copy { get; set; }
Property Value
indexing
public string indexing { get; set; }
Property Value
sparse
public bool sparse { get; set; }