当前位置: 首页>>代码示例>>Python>>正文


Python Math.min方法代码示例

本文整理汇总了Python中java.lang.Math.min方法的典型用法代码示例。如果您正苦于以下问题:Python Math.min方法的具体用法?Python Math.min怎么用?Python Math.min使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在java.lang.Math的用法示例。


在下文中一共展示了Math.min方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: build_exceedance_array

# 需要导入模块: from java.lang import Math [as 别名]
# 或者: from java.lang.Math import min [as 别名]
def build_exceedance_array(ref1, ref2, end_of_sept=True, tw=None):
    from java.lang import Math
    x1=sort(ref1, end_of_sept, tw)
    x2=sort(ref2, end_of_sept, tw)
    darray=[]
    i=0
    n=int(Math.min(len(x1),len(x2)))
    while i < n:
        darray.append((100.0-100.0*float(i)/(n+1),x1[i],x2[i]))
        i=i+1
    return darray
开发者ID:CalSimCalLite,项目名称:CalLiteGUI,代码行数:13,代码来源:dss_compare.py

示例2: eval

# 需要导入模块: from java.lang import Math [as 别名]
# 或者: from java.lang.Math import min [as 别名]
        phi = eval(self.poly_terms)
        return (i + LinAlg.dotProduct(phi,self.poly_x), j + LinAlg.dotProduct(phi,self.poly_y))


if __name__ == "__main__":
#--------------------------------------    
    model = PolyUndistortionModel(sys.argv[1])
    im = ImageIO.read(File(sys.argv[2]))

    undistorted = []
    maxx, maxy, minx, miny = float('-Inf'), float('-Inf'), float('Inf'), float('Inf')
    for i in range(im.width):
        for j in range(im.height):
            ii, jj = model.undistort(i, j)
            undistorted.append([ii, jj, im.getRGB(i,j)])
            maxx = Math.max(maxx, ii)
            minx = Math.min(minx, ii)
            maxy = Math.max(maxy, jj)
            miny = Math.min(miny, jj)

    rangex, rangey = maxx-minx, maxy-miny
    imout = BufferedImage(int(im.width*0.4), int(im.height*0.4), BufferedImage.TYPE_INT_ARGB)
    scale = imout.width/rangex

    for u in undistorted:
        x, y = int((u[0]-minx)*scale), int((u[1]-miny)*scale)
        if x < imout.width and y < imout.height:
            imout.setRGB(x, y, 0xFF000000 | u[2])

    token = sys.argv[2].split('.')[0]
    ImageIO.write(imout, 'png', File(token + '.out.png'))
开发者ID:memorydump85,项目名称:local-homography,代码行数:33,代码来源:render_undistorted_j.py

示例3:

# 需要导入模块: from java.lang import Math [as 别名]
# 或者: from java.lang.Math import min [as 别名]
import java.lang.Math as math
import java.lang.System.out.println as println
number_1 = 545
number_2 = 50
number = math.min(number_1, number_2)

println(number)
开发者ID:AleUehara,项目名称:HelloWorld-Jython,代码行数:9,代码来源:test2.py


注:本文中的java.lang.Math.min方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。