Filter löschen
Filter löschen

How to find corresponding row positions of specific values in a matrix?

1 Ansicht (letzte 30 Tage)
Hi,
I have matrix A (365x42) with mean daily temperature for 42 years and matrix B (1x42) with lowest daily temperature in each year derived from matrix A using B = min(A).
I want another matrix C (1x42) with corresponding row positions (in each column of matrix A) of values in matrix B.
Thank you!

Akzeptierte Antwort

Fabio Freschi
Fabio Freschi am 28 Okt. 2019
The function min will do this for you
[B,C] = min(A,[],1);

Weitere Antworten (0)

Kategorien

Mehr zu Matrices and Arrays finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by