R/semilog.R

Defines functions loglog semilogy semilogx

Documented in loglog semilogx semilogy

##
##  s e m i l o g . R
##


semilogx <- function(x, y, ...) {
    plot(x, y, log = "x", ...)
    grid()
}


semilogy <- function(x, y, ...) {
    plot(x, y, log = "y", ...)
    grid()
}


loglog <- function(x, y, ...) {
    plot(x, y, log = "xy", ...)
    grid()
}

Try the pracma package in your browser

Any scripts or data that you put into this service are public.

pracma documentation built on March 19, 2024, 3:05 a.m.