mirror of
https://github.com/PAMGuard/PAMGuard.git
synced 2024-11-21 22:52:22 +00:00
Version 2.02.06
(hopefully)
This commit is contained in:
parent
376a9f0f0e
commit
2253182438
2
pom.xml
2
pom.xml
@ -4,7 +4,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.pamguard</groupId>
|
||||
<artifactId>Pamguard</artifactId>
|
||||
<version>2.02.05a</version>
|
||||
<version>2.02.06</version>
|
||||
<name>Pamguard Java12+</name>
|
||||
<description>Pamguard for Java 12+, using Maven to control dependcies</description>
|
||||
<url>www.pamguard.org</url>
|
||||
|
@ -313,6 +313,9 @@ public abstract class IIRFilterMethod extends FilterMethod {
|
||||
// if (nOddOnes != 0) {
|
||||
pole1 = pzPairs[i].getPole();
|
||||
zero1 = pzPairs[i].getZero();
|
||||
if (pole1 == null || zero1 == null) {
|
||||
continue;
|
||||
}
|
||||
a1 = -zero1.real;
|
||||
b1 = pole1.real;
|
||||
doubleCoefficients[j+0] = a1;
|
||||
|
@ -31,12 +31,12 @@ public class PamguardVersionInfo {
|
||||
* Version number, major version.minorversion.sub-release.
|
||||
* Note: can't go higher than sub-release 'f'
|
||||
*/
|
||||
static public final String version = "2.02.05a";
|
||||
static public final String version = "2.02.06";
|
||||
|
||||
/**
|
||||
* Release date
|
||||
*/
|
||||
static public final String date = "11 November 2022";
|
||||
static public final String date = "15 November 2022";
|
||||
|
||||
// /**
|
||||
// * Release type - Beta or Core
|
||||
|
Loading…
Reference in New Issue
Block a user