/** * Returns this complex nuber rounded to the specified precision. * * <p>This methods <strong>does not</strong> modify this instance.</p> * * @param mathContext the {@link MathContext} used to calculate the result * @return the rounded {@link BigComplex} result */ public BigComplex round(MathContext mathContext) { return(valueOf(re.round(mathContext), im.round(mathContext))); }