Luciano Mozzi writes: > Hello, I'm a new subscriber of the list. > I couldn't find in the gsl Reference a function to calculate the conjugate > transpose of a rectangular (m row x n column) complex matrix. > Is it a multi-step process? > Can you suggest the way to do it?
There's no single function for it (an omission in the library). I'd suggest writing your own function in your application (it is only a couple of "for" loops) If you are using blas functions you may not need it, since the Trans argument can often be used instead. -- Brian Gough Network Theory Ltd, Publishing Free Software Manuals --- http://www.network-theory.co.uk/ _______________________________________________ Help-gsl mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-gsl
