summaryrefslogtreecommitdiff
path: root/fitgaussian2D.m
diff options
context:
space:
mode:
Diffstat (limited to 'fitgaussian2D.m')
-rw-r--r--fitgaussian2D.m13
1 files changed, 1 insertions, 12 deletions
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;