Borrar filtros
Borrar filtros

Find the threshold point in a matrix

1 visualización (últimos 30 días)
MByk
MByk el 22 de Nov. de 2017
Comentada: MByk el 23 de Nov. de 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.

Respuesta aceptada

Image Analyst
Image Analyst el 22 de Nov. de 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 comentarios
Image Analyst
Image Analyst el 23 de Nov. de 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 el 23 de Nov. de 2017
Thank you very much.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre String Parsing en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by