From b04d5702719eca30a95d1db2a927b6605ebd3477 Mon Sep 17 00:00:00 2001 From: nathansmith117 Date: Mon, 10 Feb 2025 01:12:55 -0700 Subject: Some fast math stuff added --- tables/square_root.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 tables/square_root.py (limited to 'tables/square_root.py') diff --git a/tables/square_root.py b/tables/square_root.py new file mode 100755 index 0000000..67ab9f7 --- /dev/null +++ b/tables/square_root.py @@ -0,0 +1,16 @@ +#! /usr/bin/python3 + +from math import sqrt + +table_size = 65536 +line_spacing = 20 + +print("float sldjSqrtTable[%d] = {" % table_size) + +for c in range(table_size): + print(f"{sqrt(c)},", end="") + + if c % line_spacing == 0: + print() + +print("};") -- cgit v1.2.3