Home
last modified time | relevance | path

Searched refs:determinant (Results 1 – 25 of 5818) sorted by path

12345678910>>...233

/dports/astro/astrometry/astrometry.net-0.85/sdss/
H A Dcommon.py477 determinant = b * f - c * e
478 B = f / determinant
479 C = -c / determinant
480 E = -e / determinant
481 F = b / determinant
564 determinant = b * f - c * e
565 B = f / determinant
566 C = -c / determinant
567 E = -e / determinant
568 F = b / determinant
/dports/astro/celestia-gtk/celestia-1.6.1/src/celmath/
H A Dplane.h130 T d = Matrix3<T>(p0.normal, p1.normal, p2.normal).determinant(); in intersection()
H A Dvecmath.h159 T determinant() const;
710 template<class T> T Matrix3<T>::determinant() const in determinant() function
735 adjoint *= 1 / determinant(); in inverse()
/dports/astro/celestia/celestia-1.6.1/src/celmath/
H A Dplane.h130 T d = Matrix3<T>(p0.normal, p1.normal, p2.normal).determinant(); in intersection()
H A Dvecmath.h159 T determinant() const;
710 template<class T> T Matrix3<T>::determinant() const in determinant() function
735 adjoint *= 1 / determinant(); in inverse()
/dports/astro/gnuastro/gnuastro-0.16/doc/
H A Dgnuastro.texi15689 The determinant of the matrix has to be non-zero and it must not contain any non-number values (for…
/dports/astro/gnuastro/gnuastro-0.16/lib/
H A Dwcsdistortion.c956 double determinant=0; in wcsdistortion_calc_tpveq() local
976 determinant = cd[0][0]*cd[1][1] - cd[0][1]*cd[1][0]; in wcsdistortion_calc_tpveq()
979 cd_inv[0][0]=cd[1][1]/determinant; /* a */ in wcsdistortion_calc_tpveq()
980 cd_inv[0][1]=(-1*cd[0][1])/determinant; /* b */ in wcsdistortion_calc_tpveq()
981 cd_inv[1][0]=(-1*cd[1][0])/determinant; /* c */ in wcsdistortion_calc_tpveq()
982 cd_inv[1][1]=cd[0][0]/determinant; /* d */ in wcsdistortion_calc_tpveq()
1024 double determinant=0; in wcsdistortion_calc_sipeq() local
1043 cd_inv[0][0]=cd[1][1]/determinant; /* a */ in wcsdistortion_calc_sipeq()
1044 cd_inv[0][1]=(-1*cd[0][1])/determinant; /* b */ in wcsdistortion_calc_sipeq()
1045 cd_inv[1][0]=(-1*cd[1][0])/determinant; /* c */ in wcsdistortion_calc_sipeq()
[all …]
/dports/astro/py-metpy/MetPy-1.1.0/docs/userguide/
H A Dgempak.rst497 <td>Jacobian determinant</td>
/dports/astro/qmapshack/qmapshack-V_1.16.1/src/qmapshack/locale/
H A Dqmapshack_ca.ts5607 <translation>S&apos;està determinant els itineraris disponibles.</translation>
/dports/astro/sofa/sofa/20210512/c/doc/
H A Dmanual.lis15144 ** determinant) and real orthogonal (inverse = transpose).
/dports/astro/stellarium/stellarium-0.21.3/po/stellarium-skycultures-descriptions/
H A Dca.po6696 msgstr "Estrela determinant"
/dports/astro/stellarium/stellarium-0.21.3/po/stellarium-skycultures/
H A Dca.po54276 msgstr "Estrela determinant"
H A Dca@valencia.po54276 msgstr "Estrela determinant"
/dports/astro/stellarium/stellarium-0.21.3/po/stellarium/
H A Dca.po21057 "en la investigació de la febre groga, determinant que es transmetia a través"
/dports/astro/xplanet/xplanet-1.3.1/src/libmultiple/
H A DdrawEllipsoid.cpp85 const double determinant = b*b - a * c; in drawEllipsoid() local
87 if (determinant < 0) continue; in drawEllipsoid()
89 double u = -(b + sqrt(determinant)); in drawEllipsoid()
119 if (pR * determinant/centerDet < 10) in drawEllipsoid()
121 opacity = 1 - pow(1-determinant/centerDet, pR); in drawEllipsoid()
H A DdrawSphere.cpp100 const double determinant = b*b - a * c; in drawSphere() local
115 if (rad >= 1 || pR * determinant/centerDet < 10) in drawSphere()
143 if (determinant < 0) continue; in drawSphere()
145 u = -(b + sqrt(determinant)); in drawSphere()
202 if (pR * determinant/centerDet < 10) in drawSphere()
203 opacity = 1 - pow(1-determinant/centerDet, pR); in drawSphere()
/dports/astro/xplanet/xplanet-1.3.1/src/libplanet/
H A DPlanet.cpp1091 const double determinant = (ellipseCoeffB * ellipseCoeffB in IsInMyShadow() local
1094 return(determinant > 0); in IsInMyShadow()
/dports/audio/carla/Carla-2.4.1/source/modules/juce_graphics/geometry/
H A Djuce_AffineTransform.cpp189 double determinant = getDeterminant(); in inverted() local
191 if (! approximatelyEqual (determinant, 0.0)) in inverted()
193 determinant = 1.0 / determinant; in inverted()
195 auto dst00 = (float) ( mat11 * determinant); in inverted()
196 auto dst10 = (float) (-mat10 * determinant); in inverted()
197 auto dst01 = (float) (-mat01 * determinant); in inverted()
198 auto dst11 = (float) ( mat00 * determinant); in inverted()
/dports/audio/carla/Carla-2.4.1/source/modules/juce_graphics/native/
H A Djuce_mac_CoreGraphicsContext.mm257 auto determinant = (t.a * t.d) - (t.c * t.b);
259 return (float) std::sqrt (std::abs (determinant));
/dports/audio/csound/csound-6.15.0/Opcodes/
H A Dquadbezier.c88 MYFLT determinant; in SolveQuadratic() local
89 determinant = b*b - 4*a*c; in SolveQuadratic()
90 if (determinant >= 0) in SolveQuadratic()
91 return (-b + SQRT(determinant)) / (FL(2.0)*a); in SolveQuadratic()
/dports/audio/espeak/espeak-1.48.04-source/dictsource/
H A Dda_list595 determinant $alt
/dports/audio/faust/faust-2.37.3/architecture/smartKeyboard/android/app/oboe/samples/RhythmGame/third_party/glm/detail/
H A Dfunc_matrix.hpp135 GLM_FUNC_DECL T determinant(matType<T, P> const & m);
H A Dfunc_matrix.inl384 GLM_FUNC_QUALIFIER T determinant(matType<T, P> const & m) function
386 …GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559 || GLM_UNRESTRICTED_GENTYPE, "'determinant' on…
/dports/audio/faust/faust-2.37.3/architecture/smartKeyboard/android/app/oboe/samples/RhythmGame/third_party/glm/gtx/
H A Dmatrix_decompose.inl51 if(determinant(PerspectiveMatrix) == static_cast<T>(0))
121 // Check for a coordinate system flip. If the determinant
H A Dsimd_mat4.hpp169 float determinant(

12345678910>>...233