Created
May 28, 2020 15:43
-
-
Save ceptreee/ff966e111313a88513b19729ed630765 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
hai1 = "(」・ω・)」ハイ" | |
hai2 = "(」・ω・)「ハイ" | |
hai3 = "(「・ω・)「ハイ" | |
hai4 = "(「・ω・)」ハイ" | |
do for [i=1:100]{ | |
if (i % 4 == 0) { | |
set title hai1 font "Arial, 24" | |
plot x | |
} | |
if (i % 4 == 1) { | |
set title hai2 font "Arial, 24" | |
plot x**2 | |
} | |
if (i % 4 == 2) { | |
set title hai3 font "Arial, 24" | |
plot x**3 | |
} | |
if (i % 4 == 3) { | |
set title hai4 font "Arial, 24" | |
plot x**4 | |
} | |
set yrange [-1:1] | |
set xrange [-1:1] | |
pause 0.3 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment