Nothing
###
### $Id: logspace.R 22 2022-05-30 18:03:47Z proebuck $
###
### Generate logarithmically spaced vectors.
###
##-----------------------------------------------------------------------------
logspace <- function(a, b, n = 50) {
if (b == pi) {
b <- log10(pi)
}
10 ^ matlab::linspace(a, b, n)
}
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.