annotate toolboxes/FullBNT-1.0.7/bnt/potentials/@upot/multiply_by_pot.m @ 0:e9a9cd732c1e tip

first hg version after svn
author wolffd
date Tue, 10 Feb 2015 15:05:51 +0000
parents
children
rev   line source
wolffd@0 1 function Tbig = multiply_by_pot(Tbig, Tsmall)
wolffd@0 2 % MULTIPLY_BY_POT Tbig *= Tsmall
wolffd@0 3 % Tbig = multiply_by_pot(Tbig, Tsmall)
wolffd@0 4 %
wolffd@0 5 % Tsmall's domain must be a subset of Tbig's domain.
wolffd@0 6
wolffd@0 7 smallp = extend_domain_table(Tsmall.p, Tsmall.domain, Tsmall.sizes, Tbig.domain, Tbig.sizes);
wolffd@0 8 Tbig.p = Tbig.p .* smallp;
wolffd@0 9
wolffd@0 10 smallu = extend_domain_table(Tsmall.u, Tsmall.domain, Tsmall.sizes, Tbig.domain, Tbig.sizes);
wolffd@0 11 Tbig.u = Tbig.u + smallu;
wolffd@0 12