Created
September 22, 2019 06:44
-
-
Save juliuskittler/9a8dba07d4d4df84acac2d3eafffc906 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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