あなたの質問を理解したように、2 つの多項式があり、それらが等しいすべての点を見つけたいと考えています。
を使用してこれを行う関数を次に示しModelica.Math.Vectors.Utilities.roots
ます。
まず、2 つの多項式poly1
と を指定しpoly2
ます。Findpoly1=poly2
は Find と同じなpoly1-poly2=0
ので、3 番目の多項式を定義してpolyDiff = polyLong-polyShort
から、その多項式を に渡しModelica.Math.Vectors.Utilities.roots
ます。複雑なルートも含め、すべてのルートを返します。
function polyIntersect
input Real[:] poly1={3,2,1,0};
input Real[:] poly2={8,7};
output Real[:,2] intersect;
protected
Integer nPoly1 = size(poly1,1);
Integer nPoly2 = size(poly2,1);
Integer nPolyShort = min(nPoly1, nPoly2);
Integer nPolyLong = max(nPoly1, nPoly2);
Real[nPolyShort] polyShort;
Real[nPolyLong] polyLong;
Real[nPolyLong] polyDiff;
algorithm
if (nPoly1<nPoly2) then
polyShort := poly1;
polyLong := poly2;
else
polyShort := poly2;
polyLong := poly1;
end if;
polyDiff := polyLong;
for i in 0:nPolyShort-1 loop
polyDiff[nPolyLong-i] := polyLong[nPolyLong-i] - polyShort[nPolyShort-i];
end for;
intersect := Modelica.Math.Vectors.Utilities.roots(polyDiff);
end polyIntersect;
上記のコードは、https ://gist.github.com/thorade/5388205 からも入手できます。