Monthly Archives: January 2012

Might be worth a read, high frequency

http://papers.ssrn.com/sol3/papers.cfm?abstract_id=1989555

Posted in Uncategorized | Tagged | Leave a comment

2D Gaussian Process GPML Example

% Optimise GP % – Make 2d grid coords z0 = linspace(-1.5,1.5,100)’; z1 = linspace(-3.0,3.0,100′); [Z0 Z1] = ndgrid(z0,z1); Z = [Z0(:) Z1(:)]; [m s2 lf lf_s2] = gp(hyp2, @infExact, [], covfunc, likfunc, X, Y, Z); lf_s1 = sqrt(lf_s2); m_2d … Continue reading

Posted in Uncategorized | Tagged | 2 Comments

Gaussian Process Example, FA Rejection

To model a simple Gaussian Process using the GPML toolkit, try % —————- % Gaussian Process likfunc = @likGauss; sn = 0.1; hyp.lik = log(sn); covfunc = @covSEiso; hyp2.cov = [0; 0]; hyp2.lik = log(0.1); hyp2 = minimize(hyp2, @gp, -100, … Continue reading

Posted in Uncategorized | Leave a comment