KerMor  0.9
Model order reduction for nonlinear dynamical systems and nonlinear approximation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
handle Class Reference

Matlab's base handle class (documentation generation substitute) More...

Detailed Description

Matlab's base handle class (documentation generation substitute)

As doxygen does not know the class "handle" from itself, many classes do not get rendered within the documentation and the correct root class is not even displayed. This workaround guarantees a correct (also graphical) representation of the class hierarchy.

Note here that by having the type handle it could also mean to have a vector or matrix of handles.

Definition at line 91 of file class_substitutes.c.

Public Attributes

 addlistener
 Creates a listener for the specified event and assigns a callback function to execute when the event occurs. More...
 
 notify
 Broadcast a notice that a specific event is occurring on a specified handle object or array of handle objects. More...
 
 delete
 Handle object destructor method that is called when the object's lifecycle ends. More...
 
 disp
 Handle object disp method which is called by the display method. See the MATLAB disp function. More...
 
 display
 Handle object display method called when MATLAB software interprets an expression returning a handle object that is not terminated by a semicolon. See the MATLAB display function. More...
 
 findobj
 Finds objects matching the specified conditions from the input array of handle objects. More...
 
 findprop
 Returns a meta.property objects associated with the specified property name. More...
 
 fields
 Returns a cell array of string containing the names of public properties. More...
 
 fieldnames
 Returns a cell array of string containing the names of public properties. See the MATLAB fieldnames function. More...
 
 isvalid
 Returns a logical array in which elements are true if the corresponding elements in the input array are valid handles. This method is Sealed so you cannot override it in a handle subclass. More...
 
 eq
 Relational functions example. See details for more information. More...
 
 transpose
 Transposes the elements of the handle object array. More...
 
 permute
 Rearranges the dimensions of the handle object array. See the MATLAB permute function. More...
 
 reshape
 hanges the dimensions of the handle object array to the specified dimensions. See the MATLAB reshape function. More...
 
 sort
 ort the handle objects in any array in ascending or descending order. More...
 

Member Data Documentation

handle.delete

Handle object destructor method that is called when the object's lifecycle ends.

Definition at line 117 of file class_substitutes.c.

handle.display

Handle object display method called when MATLAB software interprets an expression returning a handle object that is not terminated by a semicolon. See the MATLAB display function.

Definition at line 127 of file class_substitutes.c.

handle.eq

Relational functions example. See details for more information.

Other possible relational operators:
-ne -lt -le -gt -ge

Relational functions return a logical array of the same size as the pair of input handle object arrays. Comparisons use a number associated with each handle. You can assume that the same two handles will compare as equal and the repeated comparison of any two handles will yield the same result in the same MATLAB session. Different handles are always not-equal. The order of handles is purely arbitrary, but consistent.

Definition at line 167 of file class_substitutes.c.

handle.fieldnames

Returns a cell array of string containing the names of public properties. See the MATLAB fieldnames function.

Definition at line 147 of file class_substitutes.c.

Referenced by data.FileDataCollection.addData(), EstimatorAnalyzer.createStatsTables(), and fem.AFEMConfig.getOptionStr().

handle.fields

Returns a cell array of string containing the names of public properties.

Definition at line 142 of file class_substitutes.c.

Referenced by EstimatorAnalyzer.createStatsTables(), and fem.AFEMConfig.getOptionStr().

handle.findobj

Finds objects matching the specified conditions from the input array of handle objects.

Definition at line 132 of file class_substitutes.c.

Referenced by PlotManager.copyFigure(), PlotManager.createZoom(), PlotManager.savePlots(), and FunVis2DHandler.setFreeDim().

handle.findprop

Returns a meta.property objects associated with the specified property name.

Definition at line 137 of file class_substitutes.c.

handle.isvalid

Returns a logical array in which elements are true if the corresponding elements in the input array are valid handles. This method is Sealed so you cannot override it in a handle subclass.

Definition at line 153 of file class_substitutes.c.

handle.notify

Broadcast a notice that a specific event is occurring on a specified handle object or array of handle objects.

Definition at line 112 of file class_substitutes.c.

Referenced by solvers.FullyImplEuler.customSolve(), solvers.SemiImplicitEuler.customSolve(), solvers.Heun.customSolve(), solvers.ExplEuler.customSolve(), solvers.MLWrapper.ODEOutputFcn(), solvers.BaseCustomSolver.solve(), and general.DEIM.updateOrderData().

handle.permute

Rearranges the dimensions of the handle object array. See the MATLAB permute function.

Definition at line 177 of file class_substitutes.c.

Referenced by models.muscle.MusclePlotter.initPlotData(), and models.muscle.ExperimentRunner.runExperiments().

handle.reshape

hanges the dimensions of the handle object array to the specified dimensions. See the MATLAB reshape function.

Definition at line 182 of file class_substitutes.c.

Referenced by fem.geometry.BaseGeometry.checkOrientation(), testing.DEIM.compareDEIM_Full_Jacobian(), general.AffParamMatrix.compose(), PlotManager.createZoom(), general.AffParamMatrix.ctranspose(), PrintTable.ctranspose(), fem.geometry.Cube20Node.Cube20Node(), fem.geometry.Cube27Node.Cube27Node(), fem.geometry.Cube8Node.Cube8Node(), error.TPWLLocalLipEstimator.evalODEPart(), general.MatrixDEIM.evaluate(), approx.TPWLApprox.evaluate(), dscomponents.ACompEvalCoreFun.evaluateComponentPartialDerivativesMulti(), general.MatrixDEIM.evaluateMulti(), models.beam.DynLinTimoshenkoModel.exportGeometry(), fem.geometry.BaseGeometry.faceComputations(), data.FileMatrix.FileMatrix(), data.MemoryTrajectoryData.getBlock(), general.AffParamMatrix.getMatrix(), models.pcdi.CoreFun2D.getStateJacobian(), models.pcdi.InhibitCoreFun2D.getStateJacobian(), demos.ResponseSurfaceApprox.iterationPlots(), general.AffParamMatrix.mtimes(), models.pcd.PCDSystem2D.newSysDimension(), models.pcd.PCDSystem3D.newSysDimension(), models.pcdi.PCDISystem2D.newSysDimension(), models.muscle.MusclePlotter.plotGeometry(), models.pcd.PCDSystem3D.plotState(), error.TPWLLocalLipEstimator.prepareForReducedModel(), dscomponents.AffLinOutputConv.project(), general.AffParamMatrix.project(), general.geometry.RectGrid3D.RectGrid3D(), general.JacCompEvalWrapper.setPointSet(), dscomponents.ACompEvalCoreFun.setPointSet(), general.MatrixDEIM.setSimilarityTransform(), models.motorunit.Fuglevand.test_ForceResponse(), kernels.GaussKernel.test_GaussKernel(), kernels.PolyKernel.test_PolyKernel(), and approx.algorithms.VKOGA.test_VKOGA2D1D().

handle.transpose

Transposes the elements of the handle object array.

Definition at line 172 of file class_substitutes.c.


The documentation for this class was generated from the following file: