Scilab-Branch-5.3-GIT
- Scilab help
- Elementary Functions
- bitwise
- Complex
- Discrete mathematics
- elementarymatrices
- Floating point
- Integer representation
- matrixmanipulation
- matrixoperations
- searchandsort
- setoperations
- signalprocessing
- symbolic
- Trigonometry
- abs
- amell
- and
- &
- cat
- cell2mat
- cellstr
- char
- delip
- diff
- exp
- inttrap
- isdef
- isempty
- isequal
- isequalbitwise
- isvector
- log
- log10
- log1p
- log2
- logm
- lstsize
- max
- maxi
- min
- mini
- modulo
- ndims
- norm
- or
- |
- pertrans
- sign
- signm
- size
- sort
- sqrt
- sqrtm
- squarewave
- toeplitz
- typeof
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.
isequalbitwise
ビット単位の変数比較
呼び出し手順
t=isequalbitwise(a,b) t=isequalbitwise(a,b,..)
パラメータ
- a, b , ...
任意の型の変数
- t
論理値
説明
isequalbitwise
は引数を比較します.
引数全てが等しい場合,関数は %t
を返し,
その他の場合 %f
を返します.
リスト,構造体,...を比較する場合, 比較は再帰的,フィールドの順に行われます.
浮動小数点数のデータはビット単位で比較されます. すなわち, NaN 値は等しくなく, double(1) と int32(1)は等しくありません. IEEE比較については,isequalを参照ください.
例
a=list(1:5,%s+1,'ABCDEFG'); isequalbitwise(a,a)
参照
- isequal — オブジェクトの比較
<< isequal | Elementary Functions | isvector >> |