Skip to content
Snippets Groups Projects
Commit 00175095 authored by marwan's avatar marwan
Browse files

forgotten semicolon

parent 95c733b4
No related branches found
No related tags found
No related merge requests found
......@@ -81,6 +81,9 @@ function xout=jrp(varargin)
% $Revision$
%
% $Log$
% Revision 2.5 2007/05/15 17:33:13 marwan
% new neighbourhood criterion: fixed RR
%
% Revision 2.4 2006/10/24 14:16:16 marwan
% minor change: sigma in title line of RP shown only for normalised data
%
......@@ -899,7 +902,7 @@ switch(action)
py = permute(y2, [ 3 1 2 ]);
s1 = px(:,ones(1,NY),:) - py(ones(1,NY),:,:);
if check_stop(hCRP,hCtrl,nogui,obj), return, end
sy = sqrt(sum(s1.^2, 3))'
sy = sqrt(sum(s1.^2, 3))';
if check_stop(hCRP,hCtrl,nogui,obj), return, end
set(findobj('Tag','Status','Parent',findobj('Parent',hCRP,'Tag','CRPPlot')),'String','Building JRP Matrix'),drawnow
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment