R Under development (unstable) (2023-04-23 r84305 ucrt) -- "Unsuffered Consequences" Copyright (C) 2023 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 (64-bit) 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. > > set.seed(42) > > library(rcdd) If you want correct answers, use rational arithmetic. See the Warnings sections in help pages for functions that do computational geometry. > > d <- 10 > n <- 5 > foo <- matrix(rnorm(d * n), d) > > bar <- qgram(foo) > > baz <- qmatmult(t(bar), bar) > all(baz[row(baz) != col(baz)] == "0") [1] TRUE > > all(apply(qabs(bar), 2, qsum) == "1") [1] TRUE > > > proc.time() user system elapsed 0.26 0.03 0.28