Skip to content

Commit

Permalink
Fix broken import to function input_parse()
Browse files Browse the repository at this point in the history
  • Loading branch information
ejuarezg committed Aug 11, 2019
1 parent a6f3b5d commit 076efd3
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Python/Raw Python/Fftpoi.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.)
Expand Down
2 changes: 1 addition & 1 deletion Python/Raw Python/Interp.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Python/Raw Python/Lorenz.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Python/Raw Python/Lsfdemo.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down
2 changes: 1 addition & 1 deletion Python/Raw Python/Newtn.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
2 changes: 1 addition & 1 deletion Python/Raw Python/Orthog.py
Original file line number Diff line number Diff line change
Expand Up @@ -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: '))
Expand Down
2 changes: 1 addition & 1 deletion Python/Raw Python/Sprfft.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 076efd3

Please sign in to comment.