Package jline.lang.sections
Class CSFunInput
java.lang.Object
jline.lang.sections.CSFunInput
- All Implemented Interfaces:
Serializable
Input class for ClassSwitcher function.
This class is the input parameter for the class switching function (csFun).
It contains the row index (r), column index (s), and optional state information.
Note: This was previously an inner class of ClassSwitcher but has been moved
to a top-level class to avoid classloader issues in MATLAB's Java integration.
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionCSFunInput(int r, int s, Matrix state, Matrix statedep) Creates a new CSFunInput. -
Method Summary
-
Field Details
-
r
public int rRow index (source class) -
s
public int sColumn index (destination class) -
state
Optional state matrix -
statedep
Optional state-dependent matrix
-
-
Constructor Details
-
CSFunInput
Creates a new CSFunInput.- Parameters:
r- Row index (source class)s- Column index (destination class)state- Optional state matrixstatedep- Optional state-dependent matrix
-