Scilab 5.5.2
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 — オブジェクトの比較
Report an issue | ||
<< bitxor | bitwise | Complex >> |