我有两条像this plot的痕迹。
我想找到它们重叠的间隔。 对于该图,重叠间隔为[5.2,6.8]。 我的解决方案是:
我想知道还有其他有效方法可以解决这个问题吗?
我猜python和matlab可能都有内置函数来实现这一点,但我是用JavaScript编写的,所以有什么建议吗?
谢谢!
答案 0 :(得分:0)
也许只是靠近这样的十字路口:
f1(x) = a1 * x + b1;
f2(x) = a2 * x + b2;
f1(x)=f2(x)
a1 * x + b1 = a2 * x + b2 | -b1 -(a2*x)
a1 * x - a2 * x = b2 - b1 | :(a1-a2)
x= (b2-b1)/(a1-a2);
这种方法适用于所有类型的函数,但如果我们有一组线性函数,我们可以通过做一些简单的数学计算得到交叉点:
<body>
Here is an example of <mark>highlight text</mark> using mark
Here is an example of <span class="highlight">highlight text</span> using span with class
Here is an example of <span style="background-color: #FFFF00">highlight text</span> using span with style
</body>