I'm not sure this is within our control. The only method we define in
symmMatrix$values[1,2] <- 2
is that for the $ accessor, which simply reads and returns the value of slot 'values', which is a numeric matrix. The actual assignment method involved is for an R matrix, which is defined in base R, and not something we control.
#1
symmMatrix$values[1,2] <- 2
is that for the
$
accessor, which simply reads and returns the value of slot 'values', which is a numeric matrix. The actual assignment method involved is for an R matrix, which is defined in base R, and not something we control.Log in or register to post comments
#2
Log in or register to post comments