2012-07-22 Dirk Eddelbuettel * DESCRIPTION: Version 0.2.0 * inst/unitTests/runit.fastLm.R: expanded unit tests * R/inline.R: Use two hidden global variables to store RcppGSL compiler and linker flags instead of using assignInNamespace * vignettes/RcppGSL/RcppGSL-intro.Rnw: Skip use of highlight for C++ and shell snippets to sidestep build issues on 32bit OSs * vignettes/RcppGSL.bib: updated references 2012-07-21 Dirk Eddelbuettel * R/fastLm.R: expanded summary() display as in RcppArmadillo * inst/NEWS.Rd: converted from ascii text to Rd format * vignettes/*: moved from inst/doc/* per newer R Policy * vignettes/: renamed main vignette to RcppGSL-intro to not clash with the filename of the package reference manual RcppGSL.pdf * DESCRIPTION: changed Maintainer: to single person per CRAN Policy 2011-12-23 Dirk Eddelbuettel * inst/unitTests/runTests.R: unit tests output 'fallback' directory changed to '..' and files are now in top-level of $pkg.Rcheck/ 2011-12-22 Dirk Eddelbuettel * inst/include/RcppGSLForward.h (RcppGSL): Commented-out long and ulong declarations which currently clash with int64 * inst/include/RcppGSL_matrix.h (RcppGSL): Commented-out long and ulong casts which currently clash with int64 * inst/unitTests/runit.gsl.R: Disable corresponding tests 2011-06-14 Douglas Bates * R/fastLm.R, man/fastLm.Rd, src/fastLm.cpp, inst/unitTests/runit.fastLm.R: Change order of arguments in fastLm.cpp, fastLm.R, unit test and documentation. 2011-06-13 Dirk Eddelbuettel * NAMESPACE: Properly export S3methods as such * man/fastLm.Rd: Similar updates to help page 2011-04-08 Dirk Eddelbuettel * R/fastLm.R: In print.summary.fastLm(), use 'P.values' not 'P.value' 2011-04-05 Dirk Eddelbuettel * DESCRIPTION: Version 0.1.1 2011-04-04 Dirk Eddelbuettel * inst/doc/Makefile: Do not call clean in all target 2011-02-28 Dirk Eddelbuettel * inst/doc/Makefile: Call R and Rscript relative to R_HOME/bin 2011-02-11 Dirk Eddelbuettel * inst/doc/RcppGSL/Makefile: Also create unitTest vignette * inst/doc/RcppGSL/RcppGSL-unitTests.Rnw: idem * inst/doc/RcppGSL/unitTests/RcppGSL-unitTests.R: idem 2010-12-06 Romain Francois * inst/doc/RcppGSL/RcppGSL.Rnw: cosmetics 2010-11-30 Dirk Eddelbuettel * DESCRIPTION: Version 0.1.0 and initial release 2010-11-29 Romain Francois * inst/include/RcppGSLForward.h: vector_view now exposes a conversion operator to implicitely convert it to the associated gsl_vector_foo * type. Similarly matrix_view expose a conversion operator to the associated gsl matrix pointer. 2010-11-28 Dirk Eddelbuettel * inst/examples/RcppGSLExample/: Started as a means to provide a simple yet complete example of using RcppGSL in a user package * NEWS: Added with initial notes towards a release 2010-11-27 Romain Francois * include/include/*h: Updated to satisfy some grumblings from g++ 2010-11-27 Dirk Eddelbuettel * R/fastLm.R: summary() now also computed R2 and adjR2 2010-05-25 Romain Francois * inst/include/RcppGSLForward.h : add indexing operator, stl iterator and begin() and end() methods to RcppGSL::vector using proxy classes * inst/include/RcppGSLForward.h : RcppGSL::matrix gets indexing operator(int,int) * configure.win: added empty configure.win so that R CMD check does not get jealous about the configure script * src/Makevars.win: use Brian Ripley's suggestions to anticipate R 2.12.0 * inst/include/*.h: RcppGSL::vector_view and RcppGSL::matrix_view 2010-05-13 Dirk Eddelbuettel * R/fastLm.R: fastLm is now generic and behaves similar to lm(): formula interface, returns object of class 'fastLm', and had methods for print, summary and predict * man/fasttLm.Rd: documented interface accordingly * src/fastLm.cpp: Added and degrees of freedom to list of result returned from C++ to R 2010-05-13 Romain Francois * inst/include/*.h: wrap specializations are now inline * inst/include/*.h: new classes RcppGSL::matrix and RcppGSL::matrix_view 2010-05-12 Dirk Eddelbuettel * src/fastLm.cpp : added fastLm from Rcpp examples 2010-05-12 Romain Francois * inst/include/*.h: added classes RcppGSL::vector that act as smart pointers to gsl_vector_* objects. This gives nicer syntax and helps Rcpp implicit converters wrap and as.