diff options
-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); |