A=B' [TT1]=CTRANSPOSE(TT) Compute complex conjugate transpose of a TT-matrices inside QTT_TUCKER TT-Toolbox 2.2, 2009-2012 This is TT Toolbox, written by Ivan Oseledets et al. Institute of Numerical Mathematics, Moscow, Russia webpage: http://spring.inm.ras.ru/osel For all questions, bugs and suggestions please mail ivan.oseledets@gmail.com ---------------------------
0001 function [tt]=ctranspose(tt) 0002 %A=B' 0003 % [TT1]=CTRANSPOSE(TT) Compute complex conjugate transpose of a 0004 % TT-matrices inside QTT_TUCKER 0005 % 0006 % 0007 % TT-Toolbox 2.2, 2009-2012 0008 % 0009 %This is TT Toolbox, written by Ivan Oseledets et al. 0010 %Institute of Numerical Mathematics, Moscow, Russia 0011 %webpage: http://spring.inm.ras.ru/osel 0012 % 0013 %For all questions, bugs and suggestions please mail 0014 %ivan.oseledets@gmail.com 0015 %--------------------------- 0016 d = tt.dphys; 0017 for i=1:d 0018 tt.tuck{i} = ctranspose(tt.tuck{i}); 0019 end;