Home > tt2 > @tt_matrix > conj.m

conj

PURPOSE ^

Complex conjugate of a TT-matrix

SYNOPSIS ^

function [b]=conj(a)

DESCRIPTION ^

Complex conjugate of a TT-matrix
   [B]=CONJ(A) Complex conjugate of a tt_matrix A


 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
---------------------------

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function [b]=conj(a)
0002 %Complex conjugate of a TT-matrix
0003 %   [B]=CONJ(A) Complex conjugate of a tt_matrix A
0004 %
0005 %
0006 % TT-Toolbox 2.2, 2009-2012
0007 %
0008 %This is TT Toolbox, written by Ivan Oseledets et al.
0009 %Institute of Numerical Mathematics, Moscow, Russia
0010 %webpage: http://spring.inm.ras.ru/osel
0011 %
0012 %For all questions, bugs and suggestions please mail
0013 %ivan.oseledets@gmail.com
0014 %---------------------------
0015 b=a;
0016 b.tt=conj(b.tt);

Generated on Wed 08-Feb-2012 18:20:24 by m2html © 2005