ArgMin operation or ArgMin reduction for LazyTensor objects.
Arguments
- x
a
LazyTensoror aComplexLazyTensor.- index
a
charactercorresponding to the wanted reduction dimension, either"i"or"j", to specify whether if the argmin reduction is done along the indexiorj. It can beNA(default) when no reduction is desired.
Value
a LazyTensor if index = NA or an array storing the result of
the specified argmin reduction otherwise.
Details
If x is a LazyTensor, argmin(x, index) will :
if
index = "i", return the argmin reduction ofxover theiindexes.if
index = "j", return the argmin reduction ofxover thejindexes.if
index = NA(default), return a newLazyTensorobject representing the symbolic argmin of the values along the inner dimension ofx.
Note: Run browseVignettes("rkeops") to access the vignettes and find
details about this function in the "RKeOps LazyTensor" vignette, at
section "Reductions".
Note: index input argument cannot be NA for the
argmin_reduction() function.
Examples
if (FALSE) {
x <- matrix(runif(150 * 3), 150, 3) # arbitrary R matrix, 150 rows, 3 columns
x_i <- LazyTensor(x, index = 'i') # creating LazyTensor from matrix x,
# indexed by 'i'
argmin_xi <- argmin(x_i, "i") # argmin reduction indexed by 'i'
argmin_x <- argmin(x_i) # symbolic matrix
}
if (FALSE) {
x <- matrix(runif(150 * 3), 150, 3) # arbitrary R matrix, 150 rows, 3 columns
x_i <- LazyTensor(x, index = 'i') # creating LazyTensor from matrix x,
# indexed by 'i'
argmin_red <- argmin(x_i, "i") # argmin reduction indexed by 'i'
}