LightJason - AgentSpeak(L++)
org.lightjason.agentspeak.action.builtin.math.blas.matrix.CIdentity Class Reference

returns the identity matrix. More...

+ Inheritance diagram for org.lightjason.agentspeak.action.builtin.math.blas.matrix.CIdentity:
+ Collaboration diagram for org.lightjason.agentspeak.action.builtin.math.blas.matrix.CIdentity:

Public Member Functions

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 DoubleMatrix2D generate (final int p_size, @Nonnull final EType p_type)
 generates the identitiy matrix More...
 

Static Private Attributes

static final long serialVersionUID = -4774277157938945200L
 serial id More...
 

Additional Inherited Members

- Public Attributes inherited from org.lightjason.agentspeak.action.IAction
long serialVersionUID = -6374480398439703170L
 serial id More...
 
- Static Public Attributes inherited from org.lightjason.agentspeak.action.builtin.math.blas.IAlgebra
static final DenseDoubleAlgebra DENSEALGEBRA = DenseDoubleAlgebra.DEFAULT
 dense algebra More...
 
- Protected Member Functions inherited from org.lightjason.agentspeak.action.builtin.math.blas.IAlgebra
 IAlgebra ()
 ctor More...
 
 IAlgebra (final int p_length)
 ctor 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 returns the identity matrix multiple times, the arguments defines the size of each matrix, a string defines the resulting matrix type dense or space (default sparse), the action never fails

[E1|E2] = math/blas/matrix/identity( 2, 3 );
[E3|E4] = math/blas/matrix/identity( 2, 3, "dense" );

Definition at line 55 of file CIdentity.java.

Member Function Documentation

◆ execute()

final IFuzzyValue<Boolean> org.lightjason.agentspeak.action.builtin.math.blas.matrix.CIdentity.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 71 of file CIdentity.java.

References org.lightjason.agentspeak.language.CCommon.flatten(), org.lightjason.agentspeak.action.builtin.math.blas.EType.from(), org.lightjason.agentspeak.language.CRawTerm< T >.from(), org.lightjason.agentspeak.language.fuzzy.CFuzzyValue< T >.from(), org.lightjason.agentspeak.action.builtin.math.blas.matrix.CIdentity.generate(), org.lightjason.agentspeak.language.CCommon.rawvalueAssignableTo(), and org.lightjason.agentspeak.action.builtin.math.blas.EType.SPARSE.

Referenced by org.lightjason.agentspeak.action.builtin.TestCActionMathBlasMatrix.identity().

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

◆ generate()

static DoubleMatrix2D org.lightjason.agentspeak.action.builtin.math.blas.matrix.CIdentity.generate ( final int  p_size,
@Nonnull final EType  p_type 
)
staticprivate
Parameters
p_sizesize of the matrix
p_typetype of the matrix
Returns
identity

Definition at line 102 of file CIdentity.java.

Referenced by org.lightjason.agentspeak.action.builtin.math.blas.matrix.CIdentity.execute().

+ Here is the caller graph for this function:

◆ minimalArgumentNumber()

final int org.lightjason.agentspeak.action.builtin.math.blas.matrix.CIdentity.minimalArgumentNumber ( )
Returns
number of minimal arguments

Implements org.lightjason.agentspeak.action.IAction.

Definition at line 64 of file CIdentity.java.

Member Data Documentation

◆ serialVersionUID

final long org.lightjason.agentspeak.action.builtin.math.blas.matrix.CIdentity.serialVersionUID = -4774277157938945200L
staticprivate

Definition at line 60 of file CIdentity.java.