Last active
March 9, 2016 07:04
-
-
Save myuon/7033ac2815b56e3c0ecc to your computer and use it in GitHub Desktop.
Graph
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
| > f(x,T) = x < (T/4.0) ? 0 : (T/4.0 <= x && x < T) ? (4.0/9.0)*(1.0/(T**2))*(x-T/4.0)**2 : (T <= x && x < 2 * T) ? (0.6/(T**2))*(x-T)**2 + 0.25 : 0.25*log10(x / (2.0*T)) + 0.85 | |
| > plot [0:100] f(x,20) |
Author
myuon
commented
Mar 9, 2016

Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment