Skip to content

Commit

Permalink
Adding 1D and 2D features to filter
Browse files Browse the repository at this point in the history
  • Loading branch information
mlwong committed Sep 13, 2017
1 parent 564a4b9 commit c994a90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion floatpy/filters/filter.py
Expand Up @@ -185,7 +185,7 @@ def filter_z(self, data, data_filtered=None, component_idx=None, bc=(0,0)):

self._grid_partition.transpose_3d_to_z( data, data_z )
self._zfil.filter3(data_z, data_filtered_z, self._chunk_z_size[0], self._chunk_z_size[1], bc1_=bc[0], bcn_=bc[1])
self._grid_partition.transpose_z_to_3d( data_filtered_z, f_filtered )
self._grid_partition.transpose_z_to_3d( data_filtered_z, data_filtered )


def filter_all(self, data, x_bc=(0,0), y_bc=(0,0), z_bc=(0,0), ntimes=1):
Expand Down

0 comments on commit c994a90

Please sign in to comment.