Mercurial > hg > mauch-mirex-2010
view _FullBNT/KPMtools/logsum_simple.m @ 9:4ea6619cb3f5 tip
removed log files
author | matthiasm |
---|---|
date | Fri, 11 Apr 2014 15:55:11 +0100 |
parents | b5b38998ef3b |
children |
line wrap: on
line source
function result = logsum(logv) len = length(logv); if (len<2); error('Subroutine logsum cannot sum less than 2 terms.'); end; % First two terms if (logv(2)<logv(1)), result = logv(1) + log( 1 + exp( logv(2)-logv(1) ) ); else, result = logv(2) + log( 1 + exp( logv(1)-logv(2) ) ); end; % Remaining terms for (i=3:len), term = logv(i); if (result<term), result = term + log( 1 + exp( result-term ) ); else, result = result + log( 1 + exp( term-result ) ); end; end