- Scilabヘルプ
- Elementary Functions
- bitwise
- Complex
- Discrete mathematics
- elementarymatrices
- Exponential
- Floating point
- Integer representation
- matrixmanipulation
- matrixoperations
- searchandsort
- setoperations
- signalprocessing
- symbolic
- Trigonometry
- 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.
See the recommended documentation of this function
and
配列の要素の論理積
呼び出し手順
b=and(A) b=and(A,'*') b=and(A,'r') b=and(A,1) b=and(A,'c') b=and(A,2)
説明
and(A)
は, 論理値行列A
の
要素の論理積(AND)です.
A
の全エントリが %T
である場合にのみ
and(A)
は%T
("true")
となります.
and([])
は %T
を返します.
y=and(A,'r')
(または, 等価な
y=and(A,1)
) は行方向の論理積です.
行ベクトル y
の各エントリに,
x
の各行の論理積を返します.
(この and は次のように行添え字に関して行われます :
y(j)= and(A(i,j),i=1,m)
).
y=and(A,'c')
(または, 等価な
y=and(A,2)
) は列方向の論理積です.
列ベクトルy
の各エントリに,
x
の各列の論理積を返します.
返します.
(このandは次のように列添え字に関して行われます:
y(i)= and(A(i,j),j=1,n)
)
例
参照
- not — (~) 論理否定
- and 演算子 (&) — 論理積演算子
- or — 配列の要素の論理和
Report an issue | ||
<< Trigonometry | Elementary Functions | & >> |