Mercurial > hg > smallbox
view util/classes/@dictionary/mtimes.m @ 171:e8428989412f danieleb
Added dictionary decorrelation functions and test script for Letters paper.
author | Daniele Barchiesi <daniele.barchiesi@eecs.qmul.ac.uk> |
---|---|
date | Thu, 06 Oct 2011 14:33:52 +0100 |
parents | e3035d45d014 |
children |
line wrap: on
line source
function C = mtimes(A,B) isAdic = strcmp(class(A),'dictionary'); isBdic = strcmp(class(B),'dictionary'); if isAdic && ~isBdic C = A.phi*B; elseif isBdic && ~isAdic C = A*B.phi; elseif isAdic && isBdic C = A.phi*B.phi; end end