- Scilab 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.
CheckVector
C interface function which checks if a parameter send to the C function is a vector (column or row) or not
Calling Sequence
CheckVector(StackPos,m_var,n_var)
Arguments
- StackPos
the position in the Scilab memory of the parameter for which we want to perform the check (input parameter)
- m_var
the number of lines of the parameter at position StackPos in the Scilab memory
- n_var
the number of columns of the parameter at position StackPos in the Scilab memory
Description
C interface function which checks if a parameter send to the C function is a vector (column or row) or not. 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 — C interface function which checks if a parameter send to the C function is a column vector or not
- CheckDims — C interface function which checks if a parameter send to the C function has the required dimensions
- CheckRow — C interface function which checks if a parameter send to the C function is a row vector or not
- CheckScalar — C interface function which checks if a parameter send to the C function is a scalar or not
- CheckOverLoad — C gateway function which tells Scilab to look for another overloaded function
- CheckDimProp — C interface function which checks the comatibility between 2 arguments send to the C function
- CheckLength — C interface function which checks the length of a vector send as a parameter to the C function
- CheckSameDims — C interface function which checks if two parameters send to the C function have the same size
- CheckSquare — C interface function which checks if a parameter send to the C function is a square matrix or not
- How to check parameters — how to check parameter send to an interface using the C gateway functions
<< CheckSquare | Scilab Gateway API | CreateListVarFrom >> |