From ba43da889e5d662eedb4c2957162b4d9254557f9 Mon Sep 17 00:00:00 2001 From: Erik Schnetter Date: Fri, 28 Jun 2013 14:04:29 -0400 Subject: Implement frexp --- vec_builtin.h | 1 + 1 file changed, 1 insertion(+) (limited to 'vec_builtin.h') diff --git a/vec_builtin.h b/vec_builtin.h index a240a6d..f7db8ca 100644 --- a/vec_builtin.h +++ b/vec_builtin.h @@ -532,6 +532,7 @@ namespace vecmathlib { realvec_t fmax(realvec_t y) const { return MF::vml_fmax(*this, y); } realvec_t fmin(realvec_t y) const { return MF::vml_fmin(*this, y); } realvec_t fmod(realvec_t y) const { return MF::vml_fmod(*this, y); } + realvec frexp(intvec_t& r) const { return MF::vml_frexp(*this, r); } realvec_t hypot(realvec_t y) const { return MF::vml_hypot(*this, y); } intvec_t ilogb() const { return MF::vml_ilogb(*this); } boolvec_t isfinite() const { return MF::vml_isfinite(*this); } -- cgit v1.1