diff options
author | Eugeniy Mikhailov <evgmik@gmail.com> | 2014-11-12 11:13:05 -0500 |
---|---|---|
committer | Eugeniy Mikhailov <evgmik@gmail.com> | 2014-11-12 11:13:05 -0500 |
commit | 1c9897e82b9dbecb0be7a93c3a06ef9a3cefe821 (patch) | |
tree | 3ce6fdc5de59651b4c52cd110fcf77cbd704db4f | |
parent | 6c69c012b7b2fa789ade5999ab64a2ef6ddd0d5f (diff) | |
download | beam_profiler-1c9897e82b9dbecb0be7a93c3a06ef9a3cefe821.tar.gz beam_profiler-1c9897e82b9dbecb0be7a93c3a06ef9a3cefe821.zip |
name case of the function changed
-rw-r--r-- | Gauss2DRotFit.m | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Gauss2DRotFit.m b/Gauss2DRotFit.m index 84af35e..00d4ff4 100644 --- a/Gauss2DRotFit.m +++ b/Gauss2DRotFit.m @@ -1,5 +1,4 @@ -function [fitresult, gof, fout] = gauss2DRotFit(im,varargin) -%gauss2DRotFit(im,fop,title) +function [fitresult, gof, fout] = Gauss2DRotFit(im,varargin) % Create a 2D Gaussian fit (distribution might be squeezed and rotated). % Input : % @@ -24,7 +23,7 @@ function [fitresult, gof, fout] = gauss2DRotFit(im,varargin) if nargin==0 - errordlg('gauss2DRotFit has to be called with at least 1 argument'); + errordlg('Gauss2DRotFit has to be called with at least 1 argument'); return; end [sx,sy,sz]=size(im); |