R Under development (unstable) (2024-06-20 r86796 ucrt) -- "Unsuffered Consequences" Copyright (C) 2024 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > require(salad) Loading required package: salad Attaching package: 'salad' The following object is masked from 'package:stats': dnorm > x <- dual( 1:4 + 0.1 ) > A <- matrix( c(x[1], x[2], x[2], x[3]), 2 ) > > # mb <- microbenchmark::microbenchmark( A[1], A[,1, drop = FALSE], A[1,], A[1,1], A[1,2] <- x[4], A[,1] <- x[1:2], times = 1000 ) > # print(mb) > > proc.time() user system elapsed 0.31 0.07 0.34