我有一组坐标值,我想将这些值相互比较。我想要 x-min, x-max,y-min ,y-max 作为结果。例如: (10,40) 和 (20,30) 是两组值。我想比较它们;结果应该是:
x-min=10
y-min=30
x-max=20
y-max=40
我有一组坐标值,我想将这些值相互比较。我想要 x-min, x-max,y-min ,y-max 作为结果。例如: (10,40) 和 (20,30) 是两组值。我想比较它们;结果应该是:
x-min=10
y-min=30
x-max=20
y-max=40
如果您有单独的数组x
and 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);
听起来很容易:
max(x(:)); %#Get the maximal value.
min(x(:)); %#Get the minimal value.
max(y(:)); %#Get the maximal value.
min(y(:)); %#Get the minimal value.
现在你可以比较它们了。