05-Comparison | R Documentation |
Binary comparison operators for numeric/MPCR objects.
## S4 method for signature 'Rcpp_MPCR,Rcpp_MPCR'
e1 < e2
## S4 method for signature 'Rcpp_MPCR,Rcpp_MPCR'
e1 <= e2
## S4 method for signature 'Rcpp_MPCR,Rcpp_MPCR'
e1 == e2
## S4 method for signature 'Rcpp_MPCR,Rcpp_MPCR'
e1 != e2
## S4 method for signature 'Rcpp_MPCR,Rcpp_MPCR'
e1 > e2
## S4 method for signature 'Rcpp_MPCR,Rcpp_MPCR'
e1 >= e2
## S4 method for signature 'Rcpp_MPCR,BaseLinAlg'
e1 < e2
## S4 method for signature 'Rcpp_MPCR,BaseLinAlg'
e1 <= e2
## S4 method for signature 'Rcpp_MPCR,BaseLinAlg'
e1 == e2
## S4 method for signature 'Rcpp_MPCR,BaseLinAlg'
e1 != e2
## S4 method for signature 'Rcpp_MPCR,BaseLinAlg'
e1 > e2
## S4 method for signature 'Rcpp_MPCR,BaseLinAlg'
e1 >= e2
e1 , e2 |
Numeric/MPCR objects. |
A vector/matrix of logicals.
library(MPCR)
s1 <- as.MPCR(1:20,nrow=2,ncol=10,"single")
s2 <- as.MPCR(21:40,nrow=2,ncol=10,"double")
x <- s1 > s2
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.