From 0f6c67e982e06b9e8125ee082c9d86dce35ff183 Mon Sep 17 00:00:00 2001 From: Eugeniy Mikhailov Date: Wed, 19 Sep 2012 22:48:57 -0400 Subject: fitgaussian2D.m uses Gaussian2D.m in its calculations --- fitgaussian2D.m | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) (limited to 'fitgaussian2D.m') diff --git a/fitgaussian2D.m b/fitgaussian2D.m index 02c9fa2..7cf52b9 100644 --- a/fitgaussian2D.m +++ b/fitgaussian2D.m @@ -87,15 +87,4 @@ end; % 2D Gauss function function [z] = Gaussian2Dff(p,X,Y,m); - -cx = p(1); -cy = p(2); -wx = p(3); -wy = p(4); -amp = p(5); -theta = p(6); -background=p(7); -Xn = (X-cx)*cos(theta) - (Y-cy)*sin(theta); -Yn = (X-cx)*sin(theta) + (Y-cy)*cos(theta); - -z = amp*(exp(-2*((Xn).^2./(wx^2)+(Yn).^2./(wy^2)))) + background - m; \ No newline at end of file +z = Gaussian2D(p,X,Y) - m; -- cgit v1.2.3