AftGangAglay Documentation


randnorm

Parameters

N/A

Return Value

Type Description
float The generated number

Description

Generates a normalized random number.

Example

import agan

class game():
	def create(self):
		agan.log(agan.randnorm())
		return self
	#
	def update(self):
		pass
	#
	def close(self):
		pass