The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.

Low WAFOM Niederreiter-Xing Sequence

R implementation of Low WAFOM Niederreiter-Xing Sequence, based on Shinsuke Mori, “Suuchi Sekibun no tameno QMC Ten Shuugou no Sekkei, Tansaku, oyobi sono Yuukousei”, Master’s Thesis, 2017, and Ryuichi Ohori, “Efficient Quasi Monte Carlo Integration by Adjusting the Derivation-sensitivity Parameter of Walsh Figure of Merit”, Master’s Thesis, 2015.

Porting to R by Mutsuo Saito. The R version does not return coordinate value zero, but returns value very near to zero, 2^-64.

The development of this code is partially supported by JST CREST.

Reference

Sample

Get available dimension number of Low WAFOM Niederreiter-Xing Sequence.

library(LowWAFOMNX)
lowWAFOMNX.dimMinMax()
## [1]  4 32

Get available F2 dimension number of Low WAFOM Niederreiter-Xing Sequence.

lowWAFOMNX.dimF2MinMax(10)
## [1] 10 18

And get points. Each row of returned matrix contains an s-dimensional point.

s <- 4
m <- 10
c <- 2^m
mat <- lowWAFOMNX.points(dimR=s, dimF2=m)
mat[1,]
## [1] 5.421011e-20 5.421011e-20 5.421011e-20 5.421011e-20

Get digital shifted points.

s <- 4
m <- 10
c <- 2^m
mat <- lowWAFOMNX.points(dimR=s, dimF2=m, digitalShift=TRUE)
mat[1,]
## [1] 0.43250779 0.07726898 0.65990564 0.10312175

These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.