From: alfann on
Hi there,
if I have two matrix which is:
Lr & Lc
and I want to compare between the minimum from both of them and select the mimimum.
For example:
Lr=[1 2 3; 4 5 6; 7 8 9]
Lc=[2 3 4; 5 6 7; 8 9 10]

the minimum of Lr is 1
the minimum of Lr is 2

Now,
I want select the minimum which is equal to 1.
From: Jan Simon on
Dear Alfann!

> if I have two matrix which is:
> Lr & Lc
> and I want to compare between the minimum from both of them and select the mimimum.
> For example:
> Lr=[1 2 3; 4 5 6; 7 8 9]
> Lc=[2 3 4; 5 6 7; 8 9 10]
>
> the minimum of Lr is 1
> the minimum of Lr is 2
>
> Now,
> I want select the minimum which is equal to 1.

Did you try to use the function MIN ?

Jan