Implement the program for problem 2
This commit is contained in:
@@ -1,17 +1,19 @@
|
||||
import numpy as np
|
||||
import matplotlib.pyplot as plt
|
||||
|
||||
x = []
|
||||
y = []
|
||||
v = []
|
||||
with open('testdata.txt') as f:
|
||||
for line in f:
|
||||
a, b, c = line.strip().split()
|
||||
x.append(float(a))
|
||||
# y.append(float(b))
|
||||
v.append(float(c))
|
||||
def main():
|
||||
FILENAME = "analytical_solution.pdf"
|
||||
x = []
|
||||
v = []
|
||||
|
||||
fig, ax = plt.subplots()
|
||||
ax.plot(x, v)
|
||||
plt.show()
|
||||
# plt.savefig("main.png")
|
||||
with open('analytical_solution.txt') as f:
|
||||
for line in f:
|
||||
a, b = line.strip().split()
|
||||
x.append(float(a))
|
||||
v.append(float(b))
|
||||
|
||||
plt.plot(x, v)
|
||||
plt.savefig(FILENAME)
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
|
||||
Reference in New Issue
Block a user