annotate util/ksvd utils/iswhole.m @ 198:83af80baf959 luisf_dev

Reverted SMALL_two_step to the original version; adds path in the Init script.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Tue, 20 Mar 2012 12:29:47 +0000
parents c3eca463202d
children
rev   line source
idamnjanovic@70 1 function z = iswhole(x,epsilon)
idamnjanovic@70 2 %ISWHOLE Determine whole numbers with finite precision.
idamnjanovic@70 3 % Z = ISWHOLE(X,EPSILON) returns a matrix the same size as X, containing
idamnjanovic@70 4 % 1's where X is whole up to precision EPSILON, and 0's elsewhere.
idamnjanovic@70 5 %
idamnjanovic@70 6 % Z = ISWHOLE(X) uses the default value of EPSILON=1e-6.
idamnjanovic@70 7
idamnjanovic@70 8
idamnjanovic@70 9 % Ron Rubinstein
idamnjanovic@70 10 % Computer Science Department
idamnjanovic@70 11 % Technion, Haifa 32000 Israel
idamnjanovic@70 12 % ronrubin@cs
idamnjanovic@70 13 %
idamnjanovic@70 14 % May 2005
idamnjanovic@70 15
idamnjanovic@70 16 if (nargin<2), epsilon = 1e-6; end
idamnjanovic@70 17 z = abs(round(x)-x) < epsilon;