Info
此问题已关闭。 请重新打开它进行编辑或回答。
edit-comparing values
1 次查看(过去 30 天)
显示 更早的评论
imageCells - cell array contains 8 images (double array)
A=[115.9607 118.7609 118.7595 118.7681 118.3420 118.1658 118.0285 118.0862];
query=118.7595;
t = abs(A - query) < 100*eps;
if any(t), imshow(imageCells{t}); end
please tell how to form image cells from this
2 个评论
Andrei Bobrov
2012-2-16
Hi Jan! it's from http://www.mathworks.com/matlabcentral/answers/29172-comparing-the-values
回答(0 个)
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!