Class DrawNormalOperation

java.lang.Object
org.kigalisim.lang.operation.DrawNormalOperation
All Implemented Interfaces:
Operation

public class DrawNormalOperation extends Object implements 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 Details

    • DrawNormalOperation

      public DrawNormalOperation(Operation mean, Operation std)
      Create a new DrawNormalOperation.
      Parameters:
      mean - The mean of the normal distribution.
      std - The standard deviation of the normal distribution.
  • Method Details

    • execute

      public void execute(PushDownMachine machine)
      Execute the calculation and leave the result at the top of the stack.
      Specified by:
      execute in interface Operation
      Parameters:
      machine - The machine in which to execute the calculation if needed.