Mercurial > hg > smallbox
annotate util/ksvd utils/iswhole.m @ 70:c3eca463202d
(none)
author | idamnjanovic |
---|---|
date | Wed, 16 Mar 2011 14:16:57 +0000 |
parents | |
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; |