本文整理汇总了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
示例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'))
示例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)