Aardvark.Base


ITensorLong

This interface defines properties of Tensors and TensorInfos that are independent of their dimension (rank).

Instance members

Instance memberDescription
DeltaArray()
Signature: unit -> unit
Modifiers: abstract

The deltas or strides of the tensor indices in each dimension.

FirstArray()
Signature: unit -> unit
Modifiers: abstract

The lowest valid coordinate of the tensor.

OriginIndex()
Signature: unit -> unit
Modifiers: abstract

The index of the element at the origin within the tensor's data array. Note that this index may actually lie outside the tensor's data array if the lowest valid coordinate of the tensor (First, FirstArray) has positive values.

Rank
Signature: int
Modifiers: abstract

The rank of the tensor, in our case this is equal to the tensor's dimension.

SizeArray()
Signature: unit -> unit
Modifiers: abstract

The size of the tensor in each dimension.

Fork me on GitHub