How to best find whether or not a matrix is made of evenly spaced elements.
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Aaron Atkinson
il 21 Apr 2020
Risposto: Star Strider
il 21 Apr 2020
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.
0 Commenti
Risposta accettata
Star Strider
il 21 Apr 2020
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 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Matrix Indexing in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!