Skip to content

Commit d47b9b6

Browse files
committed
Updated changelog and fixed formating issue
1 parent 3312417 commit d47b9b6

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v0.16.6
2+
- Added requirement of no invalid points to plotting of Fourier transform (#29)
3+
- Added axis argument to plot_fourier_transform (#29)
14
## v0.16.5
25
- Fixed issues with wrongly decoded µ characters in file readers.
36
- Removed misinterpretation of uppercase file suffixes as unknown file formats.

surfalize/surface.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2112,7 +2112,7 @@ def plot_autocorrelation(self, ax=None, cmap='jet', show_cbar=True, save_to=None
21122112
fig.savefig(save_to, dpi=300, bbox_inches='tight')
21132113
return fig, ax
21142114

2115-
def plot_fourier_transform(self, ax = None, log=True, hanning=False, subtract_mean=True, fxmax=None, fymax=None,
2115+
def plot_fourier_transform(self, ax=None, log=True, hanning=False, subtract_mean=True, fxmax=None, fymax=None,
21162116
cmap='inferno', adjust_colormap=True, save_to=None):
21172117
"""
21182118
Plots the 2d Fourier transform of the surface. Optionally, a Hanning window can be applied to reduce to spectral

0 commit comments

Comments
 (0)