Skip to content

Commit c65f244

Browse files
committed
Now the calculated RIR is not normalized by default.
1 parent 9dd10a1 commit c65f244

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

deism/core_deism.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -691,7 +691,7 @@ def get_results(
691691
p = self.apply_highpass_filter(
692692
p, self.params["sampleRate"], cut_freq, zero_phase
693693
)
694-
p = p / np.max(np.abs(p))
694+
# p = p / np.max(np.abs(p))
695695
# Adjust rir length using the RIRLength parameter (truncate after IFFT)
696696
nSamples = int(self.params["RIRLength"] * self.params["sampleRate"])
697697
if len(p) < nSamples:

deism/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# deism/version.py
2-
__version__ = "2.2.1.7" # Update this for new versions
2+
__version__ = "2.2.1.8" # Update this for new versions

0 commit comments

Comments
 (0)