currently not used and error prone (from math import cos/sin/tan gives different behavior)

This commit is contained in:
Martin Diehl 2017-05-02 07:28:19 +02:00
parent d5ab655c8d
commit 5ccfc10bc3
1 changed files with 0 additions and 9 deletions

View File

@ -100,15 +100,6 @@ def execute(cmd,
if process.returncode != 0: raise RuntimeError('{} failed with returncode {}'.format(cmd,process.returncode))
return out,error
# -----------------------------
# Matlab like trigonometric functions that take and return angles in degrees.
# -----------------------------
for f in ['cos', 'sin', 'tan']:
exec('def %sd(deg): return (np.%s(np.deg2rad(deg)))'%(f,f))
exec('def a%sd(val): return (np.rad2deg(np.arc%s(val)))'%(f,f))
# -----------------------------
def gridLocation(idx,res):
return ( idx % res[0], \