1

我有一组坐标值,我想将这些值相互比较。我想要 x-min, x-max,y-min ,y-max 作为结果。例如: (10,40) 和 (20,30) 是两组值。我想比较它们;结果应该是:

x-min=10
y-min=30
x-max=20
y-max=40
4

2 回答 2

2

如果您有单独的数组xand y,请参阅@Andrey 的答案。如果你有一个像

A = [x y] = [
    10 40
    20 30
    ..
    90 25];

然后使用这个:

mins = min(A);
maxs = max(A); 

minX = mins(1);   maxX = maxs(1);
minY = mins(2);   maxY = maxs(2);
于 2012-08-30T08:35:24.197 回答
1

听起来很容易:

max(x(:));  %#Get the maximal value.
min(x(:));  %#Get the minimal value.
max(y(:));  %#Get the maximal value.
min(y(:));  %#Get the minimal value.

现在你可以比较它们了。

于 2012-08-30T08:30:18.420 回答