Created
June 13, 2020 20:10
-
-
Save johnmyleswhite/89bcfb2107d2ec996065d61a99a7cb0c to your computer and use it in GitHub Desktop.
This file contains 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
import Plots | |
r = range(0.0, 1.0, length=512) | |
p = Plots.plot( | |
r, | |
x -> x^2 * (1 - x)^2, | |
) | |
Plots.png(p, "output2.png") | |
# time julia example2.jl | |
# | |
# real 0m19.878s | |
# user 0m18.231s | |
# sys 0m0.516s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment