Effacer les filtres
Effacer les filtres

Find the threshold point in a matrix

1 vue (au cours des 30 derniers jours)
MByk
MByk le 22 Nov 2017
Commenté : MByk le 23 Nov 2017
I have a 178x13 double matrix. In each column there is a point where each data value starts to stay same. I want to find them (row number). For example for the first column it is 70. I tried "find(diff(values(:,1)) == 0, 1, 'first')" but it is not working. How can I do this? Thanks for the help.

Réponse acceptée

Image Analyst
Image Analyst le 22 Nov 2017
You can have differences equal to zero that are not in the last stretch of zeros. Therefore you need to use findgroups() or regionprops() to find the first element of the last group of zeros. If you need a demo, attach your data in an mat file with the paper clip icon.
  3 commentaires
Image Analyst
Image Analyst le 23 Nov 2017
That's not a great example because all those columns go steady state at exactly the same row. This simple code will do it quickly:
data = importdata('myfile.txt')
[rows, columns] = size(data)
for col = 1 : columns
fprintf('Finding where column #%d equals %f . . . ', col, data(end, col));
steadyStateLocations(col) = find(data(:, col) ~= data(end, col), 1, 'last');
fprintf('it happens at row %d.\n', steadyStateLocations(col));
end
MByk
MByk le 23 Nov 2017
Thank you very much.

Connectez-vous pour commenter.

Plus de réponses (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by