ee.Number.bitwiseXor

מחשבת את ערך ה-XOR של ערכי הקלט ברמת הסיביות.

שימושהחזרות
Number.bitwiseXor(right)מספר
ארגומנטסוגפרטים
זה: leftמספרהערך בצד ימין.
rightמספרהערך בצד שמאל.

דוגמאות

עורך הקוד (JavaScript)

/**
 * Unsigned 8-bit type example.
 *
 * 25 as binary:         00011001
 * 21 as binary:         00010101
 * Only one digit is 1?: 00001100
 *
 * 00001100 is unsigned 8-bit binary for 12.
 */

print(ee.Number(25).bitwiseXor(21));

הגדרת Python

מידע על Python API ועל שימוש ב-geemap לפיתוח אינטראקטיבי מופיע בדף Python Environment.

import ee
import geemap.core as geemap

Colab (Python)

"""Unsigned 8-bit type example.

25 as binary:         00011001
21 as binary:         00010101
Only one digit is 1?: 00001100

00001100 is unsigned 8-bit binary for 12.
"""

print(ee.Number(25).bitwiseXor(21).getInfo())