PHP查找数组的最小加速度

时间:2014-05-24 22:43:54

标签: php plot line minimum acceleration

假设我有一条绘制线,我使用每个点的x坐标作为数组的索引,y坐标作为数组中的值。有了这个数组,我需要弄清楚线的最小加速度(斜率斜率的最低点)。

我最初的想法是通过

开始在每个点找到斜率
slope[i] = (line[i] - line[i-1]) / (i - (i-1))

slope[0] = 0

然后做

acceleration[i] = (slope[i] - slope[i-1]) / (i - (i-1))

acceleration[0] = 0

然后只需将acceleration排序为最低值。但我不太确定这是否有效。

0 个答案:

没有答案