Package org.kigalisim.lang.operation
Class DrawNormalOperation
java.lang.Object
org.kigalisim.lang.operation.DrawNormalOperation
- All Implemented Interfaces:
Operation
Calculation that samples from a normal distribution.
Calculation that resolves two calculations (mean and standard deviation) and then draws a random sample from a normal distribution with those parameters by using a PushDownMachine within the QubecTalk runtime.
-
Constructor Summary
ConstructorsConstructorDescriptionDrawNormalOperation(Operation mean, Operation std) Create a new DrawNormalOperation. -
Method Summary
Modifier and TypeMethodDescriptionvoidexecute(PushDownMachine machine) Execute the calculation and leave the result at the top of the stack.
-
Constructor Details
-
DrawNormalOperation
Create a new DrawNormalOperation.- Parameters:
mean- The mean of the normal distribution.std- The standard deviation of the normal distribution.
-
-
Method Details