从 SQL 数据中查找两条曲线的交点
我有 Microsoft SQL Server 上的统计数据,并且希望从表中查询的 (x,y) 数据找到两条曲线的交点。我找到了一些与在 Excel 中执行此操作相关的文章,但我不确定如何在 SQL 中继续。我如何在 T-SQL 或 C# 代码中执行此操作?
I have statistical data on a Microsoft SQL Server and would like to find the intersection of two curves from (x,y) data I query from the tables. I have found some articles relating to doing this in excel, but I'm not sure how to proceed in SQL. How would I do this in either T-SQL or C# code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要找到两条曲线的交点,您必须隔离每个方程上的一个变量,然后将两个方程设置为彼此相等并求解您隔离的变量。 SQL 绝对不是我执行此任务的语言选择。
To find the intersection of two curves you must isolate a variable on each equation, then set the two equations equal to each other and solve for the variable you isolated. SQL is definitely not my language of choice for this task.