edu.iris.dmc.seed.control.station.Pole Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-4-seed Show documentation
Show all versions of java-4-seed Show documentation
Java API to work with seismic dataless seed
The newest version!
package edu.iris.dmc.seed.control.station;
public class Pole {
private Number real;
private Number imaginary;
public Pole() {
}
public Pole(double real, double realError, double imaginary, double imaginaryError) {
this(new Number(real, realError), new Number(imaginary, imaginaryError));
}
public Pole(Number real, Number imaginary) {
this.real = real;
this.imaginary = imaginary;
}
public Number getReal() {
return real;
}
public void setReal(Number real) {
this.real = real;
}
public Number getImaginary() {
return imaginary;
}
public void setImaginary(Number imaginary) {
this.imaginary = imaginary;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy