matlabcontrol.link.MatlabSingle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of matconsolectl Show documentation
Show all versions of matconsolectl Show documentation
MatConsoleCtl - control MATLAB from Java
/*
* Code licensed under new-style BSD (see LICENSE).
* All code up to tags/original: Copyright (c) 2013, Joshua Kaplan
* All code after tags/original: Copyright (c) 2016, DiffPlug
*/
package matlabcontrol.link;
/**
* MATLAB {@code single} with real and imaginary components.
*
* @since 4.2.0
* @author Joshua Kaplan
*/
public final class MatlabSingle extends MatlabNumber {
private static final Float DEFAULT = 0.0f;
public MatlabSingle(float real, float imag) {
super(DEFAULT, real, imag);
}
/**
* Returns the real value.
*
* @return
*/
public float toReal() {
return _real;
}
/**
* Returns the imaginary value.
*
* @return
*/
public float toImaginary() {
return _imag;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy