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
In the simpeg 1D inversion recipe. the plot_response function does not plot the 1D step model properly
Current Behavior
SimPEG defines 1D model's in thicknesses from bottom to top. The current plot function reverses the thicknesses while computing the cumsum for depth, but does not reverse the corresponding model values
In the simpeg 1D inversion recipe. the plot_response function does not plot the 1D step model properly
Current Behavior
SimPEG defines 1D model's in thicknesses from bottom to top. The current plot function reverses the thicknesses while computing the cumsum for depth, but does not reverse the corresponding model values
ax_model.step(
(1.0 / (np.exp(m))),
self._plot_z,
color="k",
**{"linestyle": "-"},
)
Possible Solution
ax_model.step(
(1.0 / (np.exp(m[::-1]))),
self._plot_z,
color="k",
**{"linestyle": "-"},
)
The text was updated successfully, but these errors were encountered: