From 076efd3d33b03d4e47f15acb8785b6eb5e08ab6a Mon Sep 17 00:00:00 2001 From: Ezequiel Juarez Garcia Date: Sun, 11 Aug 2019 15:32:54 -0400 Subject: [PATCH] Fix broken import to function input_parse() --- Python/Raw Python/Fftpoi.py | 2 +- Python/Raw Python/Interp.py | 2 +- Python/Raw Python/Lorenz.py | 2 +- Python/Raw Python/Lsfdemo.py | 2 +- Python/Raw Python/Newtn.py | 2 +- Python/Raw Python/Orthog.py | 2 +- Python/Raw Python/Sprfft.py | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Python/Raw Python/Fftpoi.py b/Python/Raw Python/Fftpoi.py index 18bee96..43f9b44 100644 --- a/Python/Raw Python/Fftpoi.py +++ b/Python/Raw Python/Fftpoi.py @@ -4,7 +4,7 @@ # Set up configuration options and special features import numpy as np import matplotlib.pyplot as plt -from extra.input_parser import arrayParser +from nm4p.input_parser import arrayParser #* Initialize parameters (system size, grid spacing, etc.) diff --git a/Python/Raw Python/Interp.py b/Python/Raw Python/Interp.py index 206f95b..e0d5ff4 100644 --- a/Python/Raw Python/Interp.py +++ b/Python/Raw Python/Interp.py @@ -4,7 +4,7 @@ # Set up configuration options and special features import numpy as np import matplotlib.pyplot as plt -from extra.input_parser import arrayParser +from nm4p.input_parser import arrayParser def intrpf(xi,x,y): """Function to interpolate between data points diff --git a/Python/Raw Python/Lorenz.py b/Python/Raw Python/Lorenz.py index 495240e..c31d6fb 100644 --- a/Python/Raw Python/Lorenz.py +++ b/Python/Raw Python/Lorenz.py @@ -4,7 +4,7 @@ # Set up configuration options and special features import numpy as np import matplotlib.pyplot as plt -from extra.input_parser import arrayParser +from nm4p.input_parser import arrayParser from nm4p.rk4 import rk4 from nm4p.rka import rka diff --git a/Python/Raw Python/Lsfdemo.py b/Python/Raw Python/Lsfdemo.py index e413991..70684d2 100644 --- a/Python/Raw Python/Lsfdemo.py +++ b/Python/Raw Python/Lsfdemo.py @@ -6,7 +6,7 @@ from nm4p.linreg import linreg from nm4p.pollsf import pollsf -from extra.input_parser import arrayParser +from nm4p.input_parser import arrayParser #* Initialize data to be fit. Data is quadratic plus random number. print('Curve fit data is created using the quadratic') diff --git a/Python/Raw Python/Newtn.py b/Python/Raw Python/Newtn.py index 182fef1..c70f446 100644 --- a/Python/Raw Python/Newtn.py +++ b/Python/Raw Python/Newtn.py @@ -4,7 +4,7 @@ # Set up configuration options and special features import numpy as np import matplotlib.pyplot as plt -from extra.input_parser import arrayParser +from nm4p.input_parser import arrayParser # Define the function f(x,a) used for root finding def fnewt(x,a): diff --git a/Python/Raw Python/Orthog.py b/Python/Raw Python/Orthog.py index 6435afb..beb0f3b 100644 --- a/Python/Raw Python/Orthog.py +++ b/Python/Raw Python/Orthog.py @@ -3,7 +3,7 @@ # Set up configuration options and special features import numpy as np -from extra.input_parser import arrayParser +from nm4p.input_parser import arrayParser #* Initialize the vectors a and b a = arrayParser(input('Enter the first vector without square brackets: ')) diff --git a/Python/Raw Python/Sprfft.py b/Python/Raw Python/Sprfft.py index 87fc697..efea0cf 100644 --- a/Python/Raw Python/Sprfft.py +++ b/Python/Raw Python/Sprfft.py @@ -4,7 +4,7 @@ # Set up configuration options and special features import numpy as np import matplotlib.pyplot as plt -from extra.input_parser import arrayParser +from nm4p.input_parser import arrayParser from nm4p.rk4 import rk4