├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── ChangeLog ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── R ├── 00-classes.r ├── 01-constructor.r ├── 02-libflags.r.in ├── 03-flags.r ├── backsolve.r ├── binary.r ├── bind.r ├── bracket.r ├── c.r ├── chol.r ├── chol2inv.r ├── colSums.r ├── cond.r ├── converters.r ├── crossprod.r ├── diag.r ├── dims.r ├── eigen.r ├── extremes.r ├── float-package.r ├── is.float.r ├── isSymmetric.r ├── math.r ├── matmult.r ├── na.r ├── names.r ├── norm.r ├── print.r ├── qr.r ├── rand.r ├── rep.r ├── scale.r ├── sign.r ├── solve.r ├── special.r ├── str.r ├── sum.r ├── svd.r ├── sweep.r ├── xpose.r └── zzz.r ├── README.md ├── appveyor.yml ├── cleanup ├── configure ├── configure.ac ├── configure.win ├── data ├── Machine_float.RData ├── NA_float_.RData └── NaNf.RData ├── inst ├── CITATION ├── benchmarks │ ├── cov.r │ ├── lmfit.r │ └── prcomp.r └── include │ └── float │ ├── float32.h │ └── slapack.h ├── man ├── Machine_float.Rd ├── NA_float_.Rd ├── NaNf.Rd ├── arithmetic.Rd ├── backsolve.Rd ├── bind.Rd ├── bracket.Rd ├── c.Rd ├── chol.Rd ├── chol2inv.Rd ├── colsums.Rd ├── comparison.Rd ├── converters.Rd ├── crossprod.Rd ├── diag.Rd ├── dims.Rd ├── eigen.Rd ├── extremes.Rd ├── float-package.Rd ├── float.Rd ├── float32-class.Rd ├── float32.Rd ├── hyperbolic.Rd ├── is.float.Rd ├── isSymmetric.Rd ├── log.Rd ├── mathis.Rd ├── matmult.Rd ├── miscmath.Rd ├── na.Rd ├── names.Rd ├── norm.Rd ├── print-float32.Rd ├── qr.Rd ├── rand.Rd ├── rcond.Rd ├── rep.Rd ├── round.Rd ├── scale.Rd ├── sign.Rd ├── solve.Rd ├── specialmath.Rd ├── sum.Rd ├── svd.Rd ├── sweep.Rd ├── trig.Rd └── xpose.Rd ├── src ├── Makevars.in ├── Makevars.ucrt ├── Makevars.win ├── NA.c ├── NA.h ├── Rfloat.h ├── backsolve.c ├── binary.c ├── blocksize.h ├── chol.c ├── chol2inv.c ├── colSums.c ├── cond.c ├── config.h.in ├── converters.c ├── crossprod.c ├── eigen.c ├── endianness.h.in ├── extremes.c ├── float_native.c ├── install.libs.R ├── isSymmetric.c ├── lapack │ ├── LICENSE │ ├── combiner.sh │ ├── ilas.f │ ├── la_constants.f90 │ ├── la_xisnan.f90 │ ├── modifications.txt │ ├── sblas.f │ ├── sf90.f90 │ ├── slamchf77.f │ ├── slapack1.f │ ├── slapack2.f │ ├── slapack3.f │ └── slapack4.f ├── machine.c ├── math.c ├── matmult.c ├── norm.c ├── norm.h ├── qr.c ├── rand.c ├── safeomp.h ├── scale.c ├── sign.c ├── slapack_wrap.f ├── solve.c ├── sum.c ├── svd.c ├── sweep.c ├── unroll.h ├── utils │ ├── matmult.c │ ├── symmetrize.c │ └── xpose.c ├── windows │ └── endianness.h └── xpose.c ├── tests ├── arithmetic.r ├── backsolve.r ├── bind.r ├── c.r ├── chol.r ├── chol2inv.r ├── colSums.r ├── comparison.r ├── cond.r ├── crossprod.r ├── diag.r ├── eigen.r ├── extremes.r ├── isSymmetric.r ├── math.r ├── matmult.r ├── na.r ├── norm.r ├── print.r ├── qr.r ├── rand.r ├── rep.r ├── scale.r ├── sign.r ├── solve.r ├── sum.r ├── svd.r ├── sweep.r └── xpose.r └── vignettes ├── build_pdf.sh ├── float.Rnw └── include ├── 00-acknowledgement.tex ├── float.bib ├── lastpage.sty ├── settings.tex └── uch_small.png /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/.travis.yml -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/ChangeLog -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/00-classes.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/00-classes.r -------------------------------------------------------------------------------- /R/01-constructor.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/01-constructor.r -------------------------------------------------------------------------------- /R/02-libflags.r.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/02-libflags.r.in -------------------------------------------------------------------------------- /R/03-flags.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/03-flags.r -------------------------------------------------------------------------------- /R/backsolve.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/backsolve.r -------------------------------------------------------------------------------- /R/binary.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/binary.r -------------------------------------------------------------------------------- /R/bind.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/bind.r -------------------------------------------------------------------------------- /R/bracket.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/bracket.r -------------------------------------------------------------------------------- /R/c.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/c.r -------------------------------------------------------------------------------- /R/chol.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/chol.r -------------------------------------------------------------------------------- /R/chol2inv.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/chol2inv.r -------------------------------------------------------------------------------- /R/colSums.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/colSums.r -------------------------------------------------------------------------------- /R/cond.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/cond.r -------------------------------------------------------------------------------- /R/converters.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/converters.r -------------------------------------------------------------------------------- /R/crossprod.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/crossprod.r -------------------------------------------------------------------------------- /R/diag.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/diag.r -------------------------------------------------------------------------------- /R/dims.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/dims.r -------------------------------------------------------------------------------- /R/eigen.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/eigen.r -------------------------------------------------------------------------------- /R/extremes.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/extremes.r -------------------------------------------------------------------------------- /R/float-package.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/float-package.r -------------------------------------------------------------------------------- /R/is.float.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/is.float.r -------------------------------------------------------------------------------- /R/isSymmetric.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/isSymmetric.r -------------------------------------------------------------------------------- /R/math.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/math.r -------------------------------------------------------------------------------- /R/matmult.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/matmult.r -------------------------------------------------------------------------------- /R/na.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/na.r -------------------------------------------------------------------------------- /R/names.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/names.r -------------------------------------------------------------------------------- /R/norm.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/norm.r -------------------------------------------------------------------------------- /R/print.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/print.r -------------------------------------------------------------------------------- /R/qr.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/qr.r -------------------------------------------------------------------------------- /R/rand.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/rand.r -------------------------------------------------------------------------------- /R/rep.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/rep.r -------------------------------------------------------------------------------- /R/scale.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/scale.r -------------------------------------------------------------------------------- /R/sign.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/sign.r -------------------------------------------------------------------------------- /R/solve.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/solve.r -------------------------------------------------------------------------------- /R/special.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/special.r -------------------------------------------------------------------------------- /R/str.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/str.r -------------------------------------------------------------------------------- /R/sum.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/sum.r -------------------------------------------------------------------------------- /R/svd.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/svd.r -------------------------------------------------------------------------------- /R/sweep.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/sweep.r -------------------------------------------------------------------------------- /R/xpose.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/xpose.r -------------------------------------------------------------------------------- /R/zzz.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/R/zzz.r -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/appveyor.yml -------------------------------------------------------------------------------- /cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/cleanup -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/configure.ac -------------------------------------------------------------------------------- /configure.win: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/Machine_float.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/data/Machine_float.RData -------------------------------------------------------------------------------- /data/NA_float_.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/data/NA_float_.RData -------------------------------------------------------------------------------- /data/NaNf.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/data/NaNf.RData -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/inst/CITATION -------------------------------------------------------------------------------- /inst/benchmarks/cov.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/inst/benchmarks/cov.r -------------------------------------------------------------------------------- /inst/benchmarks/lmfit.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/inst/benchmarks/lmfit.r -------------------------------------------------------------------------------- /inst/benchmarks/prcomp.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/inst/benchmarks/prcomp.r -------------------------------------------------------------------------------- /inst/include/float/float32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/inst/include/float/float32.h -------------------------------------------------------------------------------- /inst/include/float/slapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/inst/include/float/slapack.h -------------------------------------------------------------------------------- /man/Machine_float.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/Machine_float.Rd -------------------------------------------------------------------------------- /man/NA_float_.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/NA_float_.Rd -------------------------------------------------------------------------------- /man/NaNf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/NaNf.Rd -------------------------------------------------------------------------------- /man/arithmetic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/arithmetic.Rd -------------------------------------------------------------------------------- /man/backsolve.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/backsolve.Rd -------------------------------------------------------------------------------- /man/bind.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/bind.Rd -------------------------------------------------------------------------------- /man/bracket.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/bracket.Rd -------------------------------------------------------------------------------- /man/c.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/c.Rd -------------------------------------------------------------------------------- /man/chol.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/chol.Rd -------------------------------------------------------------------------------- /man/chol2inv.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/chol2inv.Rd -------------------------------------------------------------------------------- /man/colsums.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/colsums.Rd -------------------------------------------------------------------------------- /man/comparison.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/comparison.Rd -------------------------------------------------------------------------------- /man/converters.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/converters.Rd -------------------------------------------------------------------------------- /man/crossprod.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/crossprod.Rd -------------------------------------------------------------------------------- /man/diag.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/diag.Rd -------------------------------------------------------------------------------- /man/dims.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/dims.Rd -------------------------------------------------------------------------------- /man/eigen.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/eigen.Rd -------------------------------------------------------------------------------- /man/extremes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/extremes.Rd -------------------------------------------------------------------------------- /man/float-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/float-package.Rd -------------------------------------------------------------------------------- /man/float.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/float.Rd -------------------------------------------------------------------------------- /man/float32-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/float32-class.Rd -------------------------------------------------------------------------------- /man/float32.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/float32.Rd -------------------------------------------------------------------------------- /man/hyperbolic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/hyperbolic.Rd -------------------------------------------------------------------------------- /man/is.float.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/is.float.Rd -------------------------------------------------------------------------------- /man/isSymmetric.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/isSymmetric.Rd -------------------------------------------------------------------------------- /man/log.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/log.Rd -------------------------------------------------------------------------------- /man/mathis.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/mathis.Rd -------------------------------------------------------------------------------- /man/matmult.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/matmult.Rd -------------------------------------------------------------------------------- /man/miscmath.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/miscmath.Rd -------------------------------------------------------------------------------- /man/na.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/na.Rd -------------------------------------------------------------------------------- /man/names.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/names.Rd -------------------------------------------------------------------------------- /man/norm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/norm.Rd -------------------------------------------------------------------------------- /man/print-float32.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/print-float32.Rd -------------------------------------------------------------------------------- /man/qr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/qr.Rd -------------------------------------------------------------------------------- /man/rand.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/rand.Rd -------------------------------------------------------------------------------- /man/rcond.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/rcond.Rd -------------------------------------------------------------------------------- /man/rep.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/rep.Rd -------------------------------------------------------------------------------- /man/round.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/round.Rd -------------------------------------------------------------------------------- /man/scale.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/scale.Rd -------------------------------------------------------------------------------- /man/sign.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/sign.Rd -------------------------------------------------------------------------------- /man/solve.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/solve.Rd -------------------------------------------------------------------------------- /man/specialmath.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/specialmath.Rd -------------------------------------------------------------------------------- /man/sum.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/sum.Rd -------------------------------------------------------------------------------- /man/svd.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/svd.Rd -------------------------------------------------------------------------------- /man/sweep.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/sweep.Rd -------------------------------------------------------------------------------- /man/trig.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/trig.Rd -------------------------------------------------------------------------------- /man/xpose.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/man/xpose.Rd -------------------------------------------------------------------------------- /src/Makevars.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/Makevars.in -------------------------------------------------------------------------------- /src/Makevars.ucrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/Makevars.ucrt -------------------------------------------------------------------------------- /src/Makevars.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/Makevars.win -------------------------------------------------------------------------------- /src/NA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/NA.c -------------------------------------------------------------------------------- /src/NA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/NA.h -------------------------------------------------------------------------------- /src/Rfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/Rfloat.h -------------------------------------------------------------------------------- /src/backsolve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/backsolve.c -------------------------------------------------------------------------------- /src/binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/binary.c -------------------------------------------------------------------------------- /src/blocksize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/blocksize.h -------------------------------------------------------------------------------- /src/chol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/chol.c -------------------------------------------------------------------------------- /src/chol2inv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/chol2inv.c -------------------------------------------------------------------------------- /src/colSums.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/colSums.c -------------------------------------------------------------------------------- /src/cond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/cond.c -------------------------------------------------------------------------------- /src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/config.h.in -------------------------------------------------------------------------------- /src/converters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/converters.c -------------------------------------------------------------------------------- /src/crossprod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/crossprod.c -------------------------------------------------------------------------------- /src/eigen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/eigen.c -------------------------------------------------------------------------------- /src/endianness.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/endianness.h.in -------------------------------------------------------------------------------- /src/extremes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/extremes.c -------------------------------------------------------------------------------- /src/float_native.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/float_native.c -------------------------------------------------------------------------------- /src/install.libs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/install.libs.R -------------------------------------------------------------------------------- /src/isSymmetric.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/isSymmetric.c -------------------------------------------------------------------------------- /src/lapack/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/lapack/LICENSE -------------------------------------------------------------------------------- /src/lapack/combiner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/lapack/combiner.sh -------------------------------------------------------------------------------- /src/lapack/ilas.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/lapack/ilas.f -------------------------------------------------------------------------------- /src/lapack/la_constants.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/lapack/la_constants.f90 -------------------------------------------------------------------------------- /src/lapack/la_xisnan.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/lapack/la_xisnan.f90 -------------------------------------------------------------------------------- /src/lapack/modifications.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/lapack/modifications.txt -------------------------------------------------------------------------------- /src/lapack/sblas.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/lapack/sblas.f -------------------------------------------------------------------------------- /src/lapack/sf90.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/lapack/sf90.f90 -------------------------------------------------------------------------------- /src/lapack/slamchf77.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/lapack/slamchf77.f -------------------------------------------------------------------------------- /src/lapack/slapack1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/lapack/slapack1.f -------------------------------------------------------------------------------- /src/lapack/slapack2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/lapack/slapack2.f -------------------------------------------------------------------------------- /src/lapack/slapack3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/lapack/slapack3.f -------------------------------------------------------------------------------- /src/lapack/slapack4.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/lapack/slapack4.f -------------------------------------------------------------------------------- /src/machine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/machine.c -------------------------------------------------------------------------------- /src/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/math.c -------------------------------------------------------------------------------- /src/matmult.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/matmult.c -------------------------------------------------------------------------------- /src/norm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/norm.c -------------------------------------------------------------------------------- /src/norm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/norm.h -------------------------------------------------------------------------------- /src/qr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/qr.c -------------------------------------------------------------------------------- /src/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/rand.c -------------------------------------------------------------------------------- /src/safeomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/safeomp.h -------------------------------------------------------------------------------- /src/scale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/scale.c -------------------------------------------------------------------------------- /src/sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/sign.c -------------------------------------------------------------------------------- /src/slapack_wrap.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/slapack_wrap.f -------------------------------------------------------------------------------- /src/solve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/solve.c -------------------------------------------------------------------------------- /src/sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/sum.c -------------------------------------------------------------------------------- /src/svd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/svd.c -------------------------------------------------------------------------------- /src/sweep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/sweep.c -------------------------------------------------------------------------------- /src/unroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/unroll.h -------------------------------------------------------------------------------- /src/utils/matmult.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/utils/matmult.c -------------------------------------------------------------------------------- /src/utils/symmetrize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/utils/symmetrize.c -------------------------------------------------------------------------------- /src/utils/xpose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/utils/xpose.c -------------------------------------------------------------------------------- /src/windows/endianness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/windows/endianness.h -------------------------------------------------------------------------------- /src/xpose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/src/xpose.c -------------------------------------------------------------------------------- /tests/arithmetic.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/tests/arithmetic.r -------------------------------------------------------------------------------- /tests/backsolve.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/tests/backsolve.r -------------------------------------------------------------------------------- /tests/bind.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/tests/bind.r -------------------------------------------------------------------------------- /tests/c.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/tests/c.r -------------------------------------------------------------------------------- /tests/chol.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/tests/chol.r -------------------------------------------------------------------------------- /tests/chol2inv.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/tests/chol2inv.r -------------------------------------------------------------------------------- /tests/colSums.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/tests/colSums.r -------------------------------------------------------------------------------- /tests/comparison.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/tests/comparison.r -------------------------------------------------------------------------------- /tests/cond.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/tests/cond.r -------------------------------------------------------------------------------- /tests/crossprod.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/tests/crossprod.r -------------------------------------------------------------------------------- /tests/diag.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/tests/diag.r -------------------------------------------------------------------------------- /tests/eigen.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/tests/eigen.r -------------------------------------------------------------------------------- /tests/extremes.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/tests/extremes.r -------------------------------------------------------------------------------- /tests/isSymmetric.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/tests/isSymmetric.r -------------------------------------------------------------------------------- /tests/math.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/tests/math.r -------------------------------------------------------------------------------- /tests/matmult.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/tests/matmult.r -------------------------------------------------------------------------------- /tests/na.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/tests/na.r -------------------------------------------------------------------------------- /tests/norm.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/tests/norm.r -------------------------------------------------------------------------------- /tests/print.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/tests/print.r -------------------------------------------------------------------------------- /tests/qr.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/tests/qr.r -------------------------------------------------------------------------------- /tests/rand.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/tests/rand.r -------------------------------------------------------------------------------- /tests/rep.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/tests/rep.r -------------------------------------------------------------------------------- /tests/scale.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/tests/scale.r -------------------------------------------------------------------------------- /tests/sign.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/tests/sign.r -------------------------------------------------------------------------------- /tests/solve.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/tests/solve.r -------------------------------------------------------------------------------- /tests/sum.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/tests/sum.r -------------------------------------------------------------------------------- /tests/svd.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/tests/svd.r -------------------------------------------------------------------------------- /tests/sweep.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/tests/sweep.r -------------------------------------------------------------------------------- /tests/xpose.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/tests/xpose.r -------------------------------------------------------------------------------- /vignettes/build_pdf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/vignettes/build_pdf.sh -------------------------------------------------------------------------------- /vignettes/float.Rnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/vignettes/float.Rnw -------------------------------------------------------------------------------- /vignettes/include/00-acknowledgement.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/vignettes/include/00-acknowledgement.tex -------------------------------------------------------------------------------- /vignettes/include/float.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/vignettes/include/float.bib -------------------------------------------------------------------------------- /vignettes/include/lastpage.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/vignettes/include/lastpage.sty -------------------------------------------------------------------------------- /vignettes/include/settings.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/vignettes/include/settings.tex -------------------------------------------------------------------------------- /vignettes/include/uch_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrathematics/float/HEAD/vignettes/include/uch_small.png --------------------------------------------------------------------------------