當前位置: 首頁>>代碼示例>>Python>>正文


Python LinearAlgebra.determinant方法代碼示例

本文整理匯總了Python中LinearAlgebra.determinant方法的典型用法代碼示例。如果您正苦於以下問題:Python LinearAlgebra.determinant方法的具體用法?Python LinearAlgebra.determinant怎麽用?Python LinearAlgebra.determinant使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在LinearAlgebra的用法示例。


在下文中一共展示了LinearAlgebra.determinant方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: linePlaneIntersectionNumeric

# 需要導入模塊: import LinearAlgebra [as 別名]
# 或者: from LinearAlgebra import determinant [as 別名]
def linePlaneIntersectionNumeric(p1, p2, p3, p4, p5):
  if not useNumeric:
    return linePlaneIntersection(p1, p2, p3, p4, p5)
  if useNumpy:
    top = [
        [1., 1., 1., 1.],
        [p1[0], p2[0], p3[0], p4[0]], [p1[1], p2[1], p3[1], p4[1]],
        [p1[2], p2[2], p3[2], p4[2]]]
    topDet = numpy.linalg.det(top)
    bottom = [
        [1., 1., 1., 0.], [p1[0], p2[0], p3[0], p5[0]-p4[0]],
        [p1[1], p2[1], p3[1], p5[1]-p4[1]], [p1[2], p2[2], p3[2], p5[2]-p4[2]]]
    botDet = numpy.linalg.det(bottom)
  else:  # actually use numeric
    top = Matrix.Matrix(
        [[1., 1., 1., 1.], [p1[0], p2[0], p3[0], p4[0]], [p1[1], p2[1],
         p3[1], p4[1]], [p1[2], p2[2], p3[2], p4[2]]])
    topDet = LinearAlgebra.determinant(top)
    bottom = Matrix.Matrix(
        [[1., 1., 1., 0.], [p1[0], p2[0], p3[0], p5[0]-p4[0]], [p1[1],
         p2[1], p3[1], p5[1]-p4[1]], [p1[2], p2[2], p3[2], p5[2]-p4[2]]])
    botDet = LinearAlgebra.determinant(bottom)
  if topDet == 0.0 or botDet == 0.0:
    return False
  t = -topDet/botDet
  x = p4[0] + (p5[0]-p4[0]) * t
  y = p4[1] + (p5[1]-p4[1]) * t
  z = p4[2] + (p5[2]-p4[2]) * t
  return [x, y, z]
開發者ID:ryancoleman,項目名稱:2D-protein-shape-matching,代碼行數:31,代碼來源:geometry.py

示例2: EnergyFromBoxShape

# 需要導入模塊: import LinearAlgebra [as 別名]
# 或者: from LinearAlgebra import determinant [as 別名]
    def EnergyFromBoxShape(self, strain):
        if self.atoms == None:
            return

        if self.debug:
            unstrainedEnergy = self.atoms.GetPotentialEnergy()

        unstrainedSCVs = ApplyStrain(self.atoms, strain)

        if self.debug >= 2:
            print "volume:",LA.determinant(self.atoms.GetUnitCell())
    
        energy = self.atoms.GetPotentialEnergy()

        # restore original state
        self.atoms.GetUnitCell().SetBasis(unstrainedSCVs)

        if self.debug:
            if abs(unstrainedEnergy - self.atoms.GetPotentialEnergy()) > 1.e-10:
                print unstrainedEnergy,self.atoms.GetPotentialEnergy()
                raise StandardError

        
        return energy
開發者ID:auag92,項目名稱:n2dm,代碼行數:26,代碼來源:BoxMinimizer.py


注:本文中的LinearAlgebra.determinant方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。