Skip to content

Commit

Permalink
version 0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
samuel-rosa committed Jun 1, 2015
1 parent 42b49f3 commit 68ead98
Show file tree
Hide file tree
Showing 11 changed files with 21 additions and 17 deletions.
2 changes: 1 addition & 1 deletion man/gcpDiff.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
% Generated by roxygen2 (4.1.1): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/gcpDiff.R
\name{gcpDiff}
\alias{gcpDiff}
Expand Down
2 changes: 1 addition & 1 deletion man/gcpVector.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
% Generated by roxygen2 (4.1.1): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/gcpVector.R
\name{gcpVector}
\alias{gcpVector}
Expand Down
2 changes: 1 addition & 1 deletion man/is.numint.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
% Generated by roxygen2 (4.1.1): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/numint.R
\name{is.numint}
\alias{is.all.factor}
Expand Down
6 changes: 3 additions & 3 deletions man/pedometrics-package.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
% Generated by roxygen2 (4.1.1): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/pedometrics.R
\docType{package}
\name{pedometrics-package}
Expand Down Expand Up @@ -26,8 +26,8 @@ discouraged.
\tabular{ll}{
Package: \tab pedometrics\cr
Type: \tab Package \cr
Version: \tab 0.6-1 \cr
Date: \tab 2015-02-18 \cr
Version: \tab 0.6-2 \cr
Date: \tab 2015-06-01 \cr
License: \tab GPL (>= 2) \cr
}
}
Expand Down
2 changes: 1 addition & 1 deletion man/plotESDA.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
% Generated by roxygen2 (4.1.1): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/plotESDA.R
\name{plotESDA}
\alias{plotESDA}
Expand Down
2 changes: 1 addition & 1 deletion man/plotHD.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
% Generated by roxygen2 (4.1.1): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/plotHD.R
\name{plotHD}
\alias{plotHD}
Expand Down
2 changes: 1 addition & 1 deletion man/plotMS.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
% Generated by roxygen2 (4.1.1): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/plotMS.R
\name{plotMS}
\alias{plotMS}
Expand Down
2 changes: 1 addition & 1 deletion man/rowMinCpp.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
% Generated by roxygen2 (4.1.1): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/RcppExports.R
\name{rowMinCpp}
\alias{rowMinCpp}
Expand Down
2 changes: 1 addition & 1 deletion man/statsMS.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
% Generated by roxygen2 (4.1.1): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/statsMS.R
\name{statsMS}
\alias{statsMS}
Expand Down
2 changes: 1 addition & 1 deletion man/stepVIF.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
% Generated by roxygen2 (4.1.1): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/stepVIF.R
\name{stepVIF}
\alias{stepVIF}
Expand Down
14 changes: 9 additions & 5 deletions src/RcppExports.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,14 @@ using namespace Rcpp;
NumericVector rowMinCpp(NumericMatrix x);
RcppExport SEXP pedometrics_rowMinCpp(SEXP xSEXP) {
BEGIN_RCPP
Rcpp::RObject __result;
Rcpp::RNGScope __rngScope;
Rcpp::traits::input_parameter< NumericMatrix >::type x(xSEXP);
__result = Rcpp::wrap(rowMinCpp(x));
return __result;
SEXP __sexp_result;
{
Rcpp::RNGScope __rngScope;
Rcpp::traits::input_parameter< NumericMatrix >::type x(xSEXP );
NumericVector __result = rowMinCpp(x);
PROTECT(__sexp_result = Rcpp::wrap(__result));
}
UNPROTECT(1);
return __sexp_result;
END_RCPP
}

0 comments on commit 68ead98

Please sign in to comment.