Table of Contents

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

indexing string

{'xy', 'ij'}, optional Cartesian('xy', default) or matrix('ij') indexing of output.

sparse bool

If True a sparse grid is returned in order to conserve memory. Default is False.

copy bool

If 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

bool

indexing

public string indexing { get; set; }

Property Value

string

sparse

public bool sparse { get; set; }

Property Value

bool