intersection:python中曲线的交点

时间:2024-06-17 23:36:01
【文件属性】:

文件名称:intersection:python中曲线的交点

文件大小:34KB

文件格式:ZIP

更新时间:2024-06-17 23:36:01

numpy intersection pythhon Python

Pure numpy中两条曲线的交点 从灵感matlab实现,写的如何检测两条曲线相交这个Python实现。 示例用法 from intersect import intersection a , b = 1 , 2 phi = np . linspace ( 3 , 10 , 100 ) x1 = a * phi - b * np . sin ( phi ) y1 = a - b * np . cos ( phi ) x2 = phi y2 = np . sin ( phi ) + 2 x , y = intersection ( x1 , y1 , x2 , y2 ) plt . plot ( x1 , y1 , c = "r" ) plt . plot ( x2 , y2 , c = "g" ) plt . plot ( x , y , "*k" ) plt . show () 安


【文件预览】:
intersection-master
----setup.py(1KB)
----images()
--------.DS_Store(6KB)
--------curve_intersection_python.png(29KB)
----intersect()
--------__init__.py(35B)
--------intersect.py(3KB)
--------.DS_Store(6KB)
----LICENSE(1KB)
----setup.cfg(39B)
----.github()
--------workflows()
----tests()
--------__init__.py(0B)
--------test_intersection.py(879B)
----readme.md(788B)

网友评论