You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Great job and nice code! After read the code, I get a question:
In mesh.py, get_vertice() try to get the center point in each mesh cell. x = np.linspace(0, w, mesh_size) may corrected to x = np.linspace(0, w, mesh_size + 1) ? Since the get_vertice() was called without mesh_size+1.
Is that true ?
The text was updated successfully, but these errors were encountered:
Great job and nice code! After read the code, I get a question:
In mesh.py, get_vertice() try to get the center point in each mesh cell.
x = np.linspace(0, w, mesh_size)
may corrected tox = np.linspace(0, w, mesh_size + 1)
? Since the get_vertice() was called without mesh_size+1.Is that true ?
The text was updated successfully, but these errors were encountered: