annotate toolboxes/FullBNT-1.0.7/bnt/potentials/@mpot/pot_to_marginal.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 m = pot_to_marginal(pot)
wolffd@0 2 % POT_TO_MARGINAL Convert a mpot to a marginal structure.
wolffd@0 3 % m = pot_to_marginal(pot)
wolffd@0 4
wolffd@0 5 m.domain = pot.domain;
wolffd@0 6 m.T = exp(pot.logp);
wolffd@0 7 m.mu = pot.mu;
wolffd@0 8 m.Sigma = pot.Sigma;
wolffd@0 9
wolffd@0 10 if isvectorBNT(m.T)
wolffd@0 11 m.T = m.T(:)';
wolffd@0 12 end
wolffd@0 13