- Scilab Online Help
- API Scilab
- Scilab Gateway API
- How to
- CheckColumn
- CheckDimProp
- CheckDims
- CheckLength
- CheckLhs
- CheckRhs
- CheckRow
- CheckSameDims
- CheckScalar
- CheckSquare
- CheckVector
- CreateListVarFrom
- CreateListVarFromPtr
- CreateVar
- FindOpt
- FirstOpt
- GetListRhsVar
- GetRhsVar
- GetType
- IsOpt
- Lhs
- LhsVar
- NumOpt
- OverLoad
- Rhs
- Scierror
- Scilab C Types
- get_optionals
- istk
- sci_types
- sciprint
- stk
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
However, this page did not exist in the previous stable version.
CheckDimProp
C interface function which checks the comatibility between 2 arguments send to the C function
Calling Sequence
CheckColumn(StackPos_var1,StackPos_var2,expression)
Arguments
- StackPos_var1
the position in the Scilab memory of the first parameter for which we want to perform the check (input parameter)
- StackPos_var2
the position in the Scilab memory of the second variable for which we want to perform the check (input parameter)
- expression
a boolean expression which represent the size check we want to perform
Description
C interface function which checks the compatibility between 2 arguments send to the C function. You must include stack-c.h to benefit from this function. If the test fails, we return from the C interface and an adequate error message is printed in the Scilab console.
WARNING: This API is deprecated from Scilab 5.2.0 and is going to be removed with Scilab 6.0. Please use API Scilab (the new Scilab API).
Examples
See Also
<< CheckColumn | Scilab Gateway API | CheckDims >> |