edu.iris.dmc.seed.control.station.Zero 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 Zero {
private Number real;
private Number imaginary;
public Zero() {
}
public Zero(double real, double realError, double imaginary,
double imaginaryError) {
this.real = new Number(real, realError);
this.imaginary = new Number(imaginary, imaginaryError);
}
public Zero(Number real, Number imaginary) {
super();
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