View.View()
Constructor of View object.
Synopsis
View()
View.AddFull()
Create full view object at current dimension.
Synopsis
View AddFull()
Return
View object.
View.AddScalar()
Create View object of given index at current dimension.
Synopsis
View AddScalar(long n)
Arguments
n
: given index.Return
View object.
View.AddSlice()
Create view object of slice at current dimension.
Synopsis
View AddSlice(long start)
Arguments
start
: start index, inclusive.Return
View object.
View.AddSlice()
Create view object of slice at current dimension.
Synopsis
View AddSlice(long start, long stop)
Arguments
start
: start index, inclusive.
stop
: stop index, exclusive.Return
View object.
View.AddSlice()
Create view object of slice at current dimension.
Synopsis
View AddSlice(
long start,
long stop,
long step,
int flag)
Arguments
start
: start index, inclusive.
stop
: stop index, exclusive.
step
: step size between start and stop index. It can be negative.
flag
: optional, flag for slicing type. Default is 0.Return
View object.