标签: matlab
当匹配matricies时,有一个点有什么区别?这可以给出不同的结果
答案 0 :(得分:1)
您可以使用内置的Matlab函数uniquetol来获取阵列中某个容差的唯一值,并询问返回数组的长度。
uniquetol
实施例
A = [1+1e-11 2 3 4 1 2 3]; % generate an array with 4 unique values except for some tolerance length(uniquetol(A, 1e-10)) % will return 4