LightJason - AgentSpeak(L++)
org.lightjason.agentspeak.action.builtin.math.statistic.CRandomSample Class Reference

create a (set) of random values. More...

+ Inheritance diagram for org.lightjason.agentspeak.action.builtin.math.statistic.CRandomSample:
+ Collaboration diagram for org.lightjason.agentspeak.action.builtin.math.statistic.CRandomSample:

Public Member Functions

 CRandomSample ()
 ctor More...
 
final IFuzzyValue< Boolean > execute (final boolean p_parallel, @Nonnull final IContext p_context, @Nonnull final List< ITerm > p_argument, @Nonnull final List< ITerm > p_return)
 defines a plan-body operation More...
 
final int minimalArgumentNumber ()
 minimum number of arguments More...
 
- Public Member Functions inherited from org.lightjason.agentspeak.action.builtin.IBuiltinAction
final IPath name ()
 returns the name with path of the action More...
 
- Public Member Functions inherited from org.lightjason.agentspeak.action.IBaseAction
final boolean equals (final Object p_object)
 
final int hashCode ()
 
final String toString ()
 
- Public Member Functions inherited from org.lightjason.agentspeak.action.IAction
default Stream< IVariable<?> > variables ()
 returns a stream with all used variables More...
 

Static Private Member Functions

static ITerm samples ( @Nonnull final AbstractRealDistribution p_distribution, final int p_size, final boolean p_parallel)
 creates the sample structure More...
 

Static Private Attributes

static final long serialVersionUID = 1823216973305374276L
 serial id More...
 

Additional Inherited Members

- Public Attributes inherited from org.lightjason.agentspeak.action.IAction
long serialVersionUID = -6374480398439703170L
 serial id More...
 
- Protected Member Functions inherited from org.lightjason.agentspeak.action.builtin.IBuiltinAction
 IBuiltinAction ()
 ctor More...
 
 IBuiltinAction (final int p_length)
 ctor More...
 
- Static Protected Attributes inherited from org.lightjason.agentspeak.action.builtin.IBuiltinAction
static final Logger LOGGER = CCommon.logger( IBuiltinAction.class )
 logger More...
 
- Static Protected Attributes inherited from org.lightjason.agentspeak.action.IBaseAction
static final Logger LOGGER = org.lightjason.agentspeak.common.CCommon.logger( IAction.class )
 logger More...
 

Detailed Description

The action creates a set or single random value based on a distirbution, the first argument is the distirbution and all other arguments defines the size of the samples

[R1|R2] = math/statistic/randomsample( Distribution, 1, 5 );

Definition at line 53 of file CRandomSample.java.

Constructor & Destructor Documentation

◆ CRandomSample()

org.lightjason.agentspeak.action.builtin.math.statistic.CRandomSample.CRandomSample ( )

Definition at line 63 of file CRandomSample.java.

Member Function Documentation

◆ execute()

final IFuzzyValue<Boolean> org.lightjason.agentspeak.action.builtin.math.statistic.CRandomSample.execute ( final boolean  p_parallel,
@Nonnull final IContext  p_context,
@Nonnull final List< ITerm p_argument,
@Nonnull final List< ITerm p_return 
)
Parameters
p_parallelparallel execution
p_contextcurrent execution context
p_argumentparameter of the action
p_returnreturn values
Returns
fuzzy boolean

Implements org.lightjason.agentspeak.language.execution.IExecution.

Definition at line 77 of file CRandomSample.java.

References org.lightjason.agentspeak.language.CCommon.flatten(), org.lightjason.agentspeak.language.fuzzy.CFuzzyValue< T >.from(), and org.lightjason.agentspeak.action.builtin.math.statistic.CRandomSample.samples().

Referenced by org.lightjason.agentspeak.action.builtin.TestCActionMathStatistics.randomsample().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ minimalArgumentNumber()

final int org.lightjason.agentspeak.action.builtin.math.statistic.CRandomSample.minimalArgumentNumber ( )
Returns
number of minimal arguments

Implements org.lightjason.agentspeak.action.IAction.

Definition at line 70 of file CRandomSample.java.

◆ samples()

static ITerm org.lightjason.agentspeak.action.builtin.math.statistic.CRandomSample.samples ( @Nonnull final AbstractRealDistribution  p_distribution,
final int  p_size,
final boolean  p_parallel 
)
staticprivate
Parameters
p_distributiondistribution object
p_sizesize of the returned values
p_parallelparallel flag
Returns
term with data

Definition at line 105 of file CRandomSample.java.

References org.lightjason.agentspeak.language.CRawTerm< T >.from().

Referenced by org.lightjason.agentspeak.action.builtin.math.statistic.CRandomSample.execute().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

Member Data Documentation

◆ serialVersionUID

final long org.lightjason.agentspeak.action.builtin.math.statistic.CRandomSample.serialVersionUID = 1823216973305374276L
staticprivate

Definition at line 58 of file CRandomSample.java.