Last active
September 4, 2022 22:51
-
-
Save yukihane/c3e94f2d67baea15ea7e8c4ef1a8deba 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
# https://twitter.com/hatsunetsu7/status/1566376520184000512 | |
# を書く gnuplot スクリプト | |
# 2時間(120分)分描画 | |
set xrange [0:120] | |
max(x,y) = x > y ? x : y | |
# 20分まで毎 => ceil(x/20) | |
# 40分まで無料 => x-40 | |
plot max(0, 100 * ceil((x-40)/20)) |
Author
yukihane
commented
Sep 4, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment