Scilab 5.5.1
- Ajuda do Scilab
- Funções Elementares
- Bitwise operations
- Complex
- Matemática discreta
- Elementary matrices
- Exponential
- Ponto flutuante
- Integer representation
- Matrix manipulation
- Matrix operations
- Search and sort
- Set operations
- Signal processing
- Symbolic
- Trigonometria
- and
- cat
- cell2mat
- cellstr
- isempty
- isequal
- lstsize
- modulo
- ndims
- or
- sign
- size
- IsAScalar
- &
- iscolumn
- ismatrix
- isrow
- isscalar
- issquare
- isvector
- nthroot
- num2cell
- |
- 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
Versão | Descrição |
5.5.0 | Function tagged as obsolete. Will be removed in 5.5.1. Please use isscalar instead. |
Report an issue | ||
<< size | Funções Elementares | & >> |