October 2018
Beginner to intermediate
676 pages
18h 30m
English
Here are the steps involved in plotting the required graph:
fig = plt.figure(1, figsize=(7, 4))
# Transformation Function to convert curvilinear coordinates to rectilinear coordinatesdef curv2rect_tr(x, y): x, y = np.asarray(x), np.asarray(y) return x, y - x
# Transformation Function to convert rectilinear coordinates to curvilinear coordinatesdef rect2curv_tr(x, y): x, y = np.asarray(x), np.asarray(y) return x, y + x
Read now
Unlock full access