随机数生成器(环境设置)

使用“随机数生成器”环境的工具将通过利用种子和分布的各种算法来生成一系列随机数。

用法说明

对话框语法

脚本语法

arcpy.env.randomGenerator = random_generator_option

random_generator_option

说明

seed {distribution}

  • 种子应为整数值,用于启动随机数生成器。默认值为 0。
  • 分布属于随机数生成算法。
    • ACM599 - ACM collected algorithm 599。这是默认值。
    • MERSENNE_TWISTER - Mersenne Twister mt19937。
    • STANDARD_C - Standard C Rand。

RandomNumberGenerator 类

RandomNumberGenerator 可通过 CreateRandomValueGenerator 函数创建,也可以从 randomGenerator 环境中返回得到。

randomGenerator 语法

使用“计算值”工具创建随机值。

import arcpy

# Set the randomGenerator environment to 4 MERSENNE_TWISTER
arcpy.env.randomGenerator = "4 MERSENNE_TWISTER"

# Calculate a random number using the arcgis.rand() function 
result = arcpy.CalculateValue_management("arcgis.rand('normal 0.0 10.0')") 

# Get the value from the result object from CalculateValue and print 
randomValue = float(result.getOutput(0)) 
print randomValue

相关主题

5/10/2014