Frobenius dot product of two TT-matrices [PR]=DOT(TT1,TT2) Frobenius dot product of two TT-matrices 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 [p] = dot(tt1,tt2) 0002 %Frobenius dot product of two TT-matrices 0003 % [PR]=DOT(TT1,TT2) Frobenius dot product of two TT-matrices 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 p=dot(tt1.tt,tt2.tt); 0016 return 0017 end