Nothing
###
### $Id: pow2.R 22 2022-05-30 18:03:47Z proebuck $
###
##-----------------------------------------------------------------------------
test.pow2 <- function(input, expected) {
output <- do.call(getFromNamespace("pow2", "matlab"), input)
identical(output, expected)
}
pow2.expected.00 <- 0
pow2.expected.m1 <- -0.5
pow2.expected.f <- c(1, 2, 4, 8)
pow2.expected.fe <- c(0, 0.5, -8, 24)
pow2.expected.complex <- c(2^(1i), 2^(-1i))
test.pow2(list(f=0, e=0), pow2.expected.00)
test.pow2(list(f=-1, e=-1), pow2.expected.m1)
test.pow2(list(f=0:3), pow2.expected.f)
test.pow2(list(f=c(0, 1, -2, 3), e=c(0, -1, 2, 3)), pow2.expected.fe)
test.pow2(list(f=c(1i, -1i)), pow2.expected.complex)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.