Class CSFunInput

  • All Implemented Interfaces:
    java.io.Serializable

    
    public class CSFunInput
     implements 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.

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Constructor Summary

      Constructors 
      Constructor Description
      CSFunInput(int r, int s, Matrix state, Matrix statedep) Creates a new CSFunInput.
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • CSFunInput

        CSFunInput(int r, int s, Matrix state, Matrix statedep)
        Creates a new CSFunInput.
        Parameters:
        r - Row index (source class)
        s - Column index (destination class)
        state - Optional state matrix
        statedep - Optional state-dependent matrix
    • Method Detail