Package org.zkoss.zss.engine

Examples of org.zkoss.zss.engine.Complex.conjugate()


   * @param ctx the function context.
   * @return the complex conjugate of a complex number.
   */
  public static Object engineerImconjugate(Object[] args, XelContext ctx) {
    Complex complex = UtilFns.validateComplex(args[0].toString());
    return UtilFns.cToComplex(complex.conjugate(), complex.getSuffix());
  }
 
  /**
   * Returns the cosine of a complex number.
   * This function implements the IMCOS(arg0) spreadsheet function.
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.