Skip to content

Instantly share code, notes, and snippets.

@juliuskittler
Created September 22, 2019 06:44
Show Gist options
  • Select an option

  • Save juliuskittler/9a8dba07d4d4df84acac2d3eafffc906 to your computer and use it in GitHub Desktop.

Select an option

Save juliuskittler/9a8dba07d4d4df84acac2d3eafffc906 to your computer and use it in GitHub Desktop.
par(mfrow=c(5,2), mar=c(2,2,2,2))
curve(sin(x), from = -10, to = 10, main = "sin(x)")
curve(sinpi(x), from = -10, to = 10, main = "sin(pi*x)")
curve(sinh(x), from = -10, to = 10, main = "sinh(x)")
curve(asinh(x), from = -10, to = 10, main = "asinh(x)")
curve(cos(x), from = -10, to = 10, main = "cos(x)")
curve(cospi(x), from = -10, to = 10, main = "cos(pi*x)")
curve(cosh(x), from = -10, to = 10, main = "cosh(x)")
curve(acosh(x), from = -10, to = 10, main = "acosh(x)")
curve(tan(x), from = -10, to = 10, main = "tan(x)")
curve(tanpi(x), from = -10, to = 10, main = "tan(pi*x)")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment