Scilab 5.5.2
- Справка Scilab
- Основные функции
- Побитовые операции
- Комплексные числа
- Дискретная математика
- Элементарные матрицы
- логарифм - экспонента - степень
- Плавающая запятая
- Представление целых чисел
- Манипуляции с матрицами
- Матричные операции
- Поиск и сортировка
- Операции с множествами
- Сигнальная обработка
- Символьное вычисление
- Тригонометрия
- and
- &
- cat
- cell2mat
- cellstr
- isempty
- isequal
- isvector
- lstsize
- modulo
- ndims
- nthroot
- or
- |
- sign
- size
- iscolumn
- ismatrix
- isrow
- isscalar
- issquare
- num2cell
- unwrap
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
isscalar
check if a variable is a scalar.
Calling Sequence
t=isscalar(x)
Arguments
- x
scalar,vector, matrix, hypermatrix, list, array of structures or cells
- t
a boolean
Description
isscalar(
returns true if x
)x
is a scalar (if size(x
) is 1). Note that isscalar([])
returns false.
Examples
isscalar(ones(10,10)) isscalar(1) isscalar("s") s = struct(); isscalar(s) // Empty structure clear s s.a = %z; s.b = 2; isscalar(s) // Scalar structure clear s s(1,2).a = 3; s(1,3).b = %z; isscalar(s) // Row array of structures clear s s(2,1).a = "w"; s(3,1).b = %t; isscalar(s) // Column array of structures
See also
History
Версия | Описание |
5.5.0 | Function isscalar introduced. |
Report an issue | ||
<< isrow | Основные функции | issquare >> |