Scilab 5.5.0
- Scilab Help
- Elementary Functions
- Bitwise operations
- Complex
- Discrete mathematics
- Elementary matrices
- Log - exp - power
- Floating point
- Radix conversions
- Matrix manipulation
- Matrix operations
- Search and sort
- Set operations
- Signal processing
- Symbolic
- Trigonometry
- IsAScalar
- and
- &
- cat
- cell2mat
- cellstr
- iscolumn
- isempty
- isequal
- ismatrix
- isrow
- isscalar
- issquare
- isvector
- lstsize
- modulo
- ndims
- nthroot
- num2cell
- or
- |
- sign
- size
- unwrap
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.
IsAScalar
check if a variable is a scalar. This function is obsolete.
Calling Sequence
t=IsAScalar(x)
Arguments
- x
vector or matrix
- t
a boolean
Description
IsAScalar(
returns true if x
)x
is a scalar (if size(x
) is 1 and type(x
,1) is 1 too).
This function is obsolete. |
IsAScalar
.Examples
IsAScalar(ones(10,10)) IsAScalar(1) IsAScalar("s")
History
Version | Description |
5.5.0 | Function tagged as obsolete. Will be removed in 5.5.1. Please use isscalar instead. |
Report an issue | ||
<< Trigonometry | Elementary Functions | and >> |