如何轻松优雅地进行PHP矩阵运算?
我有一个 $max
,它本质上是一个二维数组。
$max
中的每个元素要么是 1
,要么是 0
,
可以用 $max[$x][$y]< 表示/code>,其中
$x
是0~WIDTH
内的整数,与$y
类似
我的目的是找到行< /strong> 和 $max
中的列 之和大于 CONSTANT
,并获取平均距离
符合条件的行/列之间。
有人有好的解决办法吗?
I've a $max
which is essentially a two dimensional array.
Each element in $max
is eithor 1
or 0
,
can be denoted by $max[$x][$y]
, where $x
is an integer within 0~WIDTH
,similar for $y
My purpose is to find rows and columns in the $max
that sums up greater than a CONSTANT
, and get the average distance
between rows/columns that qualify.
Anyone has a good solution ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我还没有测试过这个,但它应该可以用于总结列和行:
不过,您仍然需要计算平均距离。
I have not tested this, but it should work for summing up the columns and rows:
You still have to calculate the average distance though.