package Jampack; /** H computes the conjugate transpose of a matrix and the transpose of a complex matrix. @version Pre-alpha @author G. W. Stewart */ public class H{ /** Returns the conjugate transpose of a Zmat. @param A The matrix to be conjugated and transposed @return The conjugate transpose of A */ public static Zmat o(Zmat A) { Zmat Ah = new Zmat(A.nc, A.nr); for (int i=0; i