Scilab 5.4.1
- Scilab help
- Elementary Functions
- bitwise
- Complex
- Discrete mathematics
- elementarymatrices
- Exponential
- Floating point
- Integer representation
- matrixmanipulation
- matrixoperations
- searchandsort
- setoperations
- signalprocessing
- symbolic
- Trigonometry
- and
- &
- cat
- cell2mat
- cellstr
- isempty
- isequal
- isvector
- lstsize
- maxi
- mini
- modulo
- ndims
- nthroot
- or
- |
- sign
- size
- sort
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)
は, 論理値行列の要素の論理積 AND です.
A
の全エントリが %T
である場合にのみ
and(A)
は%T
("true")
となります.
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 | & >> |