Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

How to find out the minimum error and its index number by comparing two coulmns of matrices?

1 vue (au cours des 30 derniers jours)
AS
AS le 28 Sep 2020
Clôturé : MATLAB Answer Bot le 20 Août 2021
I have 22 number of traces (sig1 & sig2 ) in two matrices. I have calculated two error matrices E1 (1 by 22) and E2 (1 by 22) for two different matrices of signal contain 22 number of traces. Now, I want to caompare both the error values and take minimum value column wise for each signal and so on. In this way, I want to store the minimum error values for each signal and find out its corresponding trace number. Error I have calculated. Then, how to find out the minimum error comparing two error matrices and its corresponinf traces? Please help me to solve this problem.
for i1=1:1801
for j1=1:22
E1(:,j1)=immse(tr1(:,j1),sig1(:,j1));
E2(:,j1)=immse(tr1(:,j1),sig2(:,j1));
end
end

Réponses (1)

Ameer Hamza
Ameer Hamza le 28 Sep 2020
Modifié(e) : Ameer Hamza le 28 Sep 2020
You can do something like this
[min_E1, idx_E1] = min(E1);
[min_E2, idx_E2] = min(E2);
min_E1 is the minimum value, and idx_E1 is the index at which the minimum value occurs.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by