summaryrefslogtreecommitdiff
path: root/plot.lua
diff options
context:
space:
mode:
authorsanine <sanine.not@pm.me>2025-10-24 12:08:39 -0500
committersanine <sanine.not@pm.me>2025-10-24 12:08:39 -0500
commit54430e64cbb9577ee69de40bc92040428c73e097 (patch)
treebb48d7ba2b04399eb62381ef993e3b23aa1755e2 /plot.lua
parent50793e214c05ff77636addb319ccf0de864713e4 (diff)
remove spurious files
Diffstat (limited to 'plot.lua')
-rw-r--r--plot.lua15
1 files changed, 0 insertions, 15 deletions
diff --git a/plot.lua b/plot.lua
deleted file mode 100644
index 18cf16b..0000000
--- a/plot.lua
+++ /dev/null
@@ -1,15 +0,0 @@
-local fn = function(x)
- local fn1 = function() return 0.515 end
- local fn2 = function(arg1) return x end
- return (x*math.exp((x/0.729)))
-end
-
-f = io.open('data.ssv', 'w')
-x0 = -1
-x1 = 1
-for n=0,1000 do
- local x = (n * (2/1000)) + x0
- print(x)
- f:write(string.format("%d %f %f\n", n, x, fn(x)))
-end
-f:close()