How to best find whether or not a matrix is made of evenly spaced elements.

2 次查看(过去 30 天)
I am currently writing an algorithem and I need to be able to tell whether or not an input matrix is made up of evenly spaced elements, so far i've tried to use the diff function but I haven't been able to integrate the results of that into an algorithem.

采纳的回答

Star Strider
Star Strider 2020-4-21
I would use:
dm = diff(M,[],dim);
dmean = mean(dm);
dstd = std(dm);
where ‘M’ is your matrix, to initially assess them.
For evenly-spaced elements,‘dstd’ should be on hte order of 1E-15 or less, although that has to be taken in the context of the value of ‘dmean’, which is the reason for calculating it. If you want to be certain the elements are evenly-spaced in the appropriate dimension, use the Signal Processing Toolbox resample function to resample them to a constant sampling interval.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

产品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by