Skip to content

Commit

Permalink
opxrd/plots: Upscaled fourier output
Browse files Browse the repository at this point in the history
  • Loading branch information
Somerandomguy10111 committed Dec 22, 2024
1 parent d2fea5c commit aa69786
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 28 deletions.
2 changes: 1 addition & 1 deletion opxrd/analysis/plotter.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def _fourier_plots(self, x, y_list: list[NDArray], msg: str, figname: str, y_nam
for y in y_list:
xf, yf = compute_standardized_fourier(x, y)
yf_list.append(yf)
fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(12, 4))
fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(12, 4), dpi=200)
kwargs = {} if len(y_list) <= 1 else {'linewidth': 0.5}


Expand Down
Loading

0 comments on commit aa69786

Please sign in to comment.