ee.Image.random
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
यह हर पिक्सल लोकेशन पर, बिना किसी क्रम के एक नंबर जनरेट करता है. 'यूनिफ़ॉर्म' डिस्ट्रिब्यूशन का इस्तेमाल करने पर, आउटपुट [0, 1) की सीमा में होते हैं. 'सामान्य' डिस्ट्रिब्यूशन का इस्तेमाल करने पर, आउटपुट में μ=0, σ=1 होता है. हालांकि, इसमें कोई सीमा तय नहीं की जाती.
इस्तेमाल | रिटर्न |
---|
ee.Image.random(seed, distribution) | इमेज |
आर्ग्यूमेंट | टाइप | विवरण |
---|
seed | Long, डिफ़ॉल्ट: 0 | रैंडम नंबर जनरेटर के लिए सीड. |
distribution | स्ट्रिंग, डिफ़ॉल्ट: "यूनिफ़ॉर्म" | जनरेट किए जाने वाले रैंडम नंबर का डिस्ट्रिब्यूशन टाइप. 'यूनिफ़ॉर्म' या 'सामान्य' में से कोई एक. |
जब तक कुछ अलग से न बताया जाए, तब तक इस पेज की सामग्री को Creative Commons Attribution 4.0 License के तहत और कोड के नमूनों को Apache 2.0 License के तहत लाइसेंस मिला है. ज़्यादा जानकारी के लिए, Google Developers साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 2025-07-26 (UTC) को अपडेट किया गया.
[null,null,["आखिरी बार 2025-07-26 (UTC) को अपडेट किया गया."],[[["\u003cp\u003eGenerates random numbers at each pixel location of an image.\u003c/p\u003e\n"],["\u003cp\u003eOffers two distribution options: 'uniform' (range [0, 1)) and 'normal' (μ=0, σ=1).\u003c/p\u003e\n"],["\u003cp\u003eAllows specification of a seed for reproducible results, defaulting to 0 if not provided.\u003c/p\u003e\n"],["\u003cp\u003eReturns an Earth Engine Image object containing the generated random numbers.\u003c/p\u003e\n"]]],["Produces an image of random numbers at each pixel. The `seed` argument, a long integer, controls the random number generator. The `distribution` argument, defaulting to \"uniform,\" can be either \"uniform\" (outputting values within [0, 1)) or \"normal\" (outputting values with μ=0, σ=1). The function `ee.Image.random()` returns an Image.\n"],null,["# ee.Image.random\n\nGenerates a random number at each pixel location. When using the 'uniform' distribution, outputs are in the range of \\[0, 1). Using the 'normal' distribution, the outputs have μ=0, σ=1, but no explicit limits.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|------------------------------------------------|---------|\n| `ee.Image.random(`*seed* `, `*distribution*`)` | Image |\n\n| Argument | Type | Details |\n|----------------|----------------------------|-----------------------------------------------------------------------------------|\n| `seed` | Long, default: 0 | Seed for the random number generator. |\n| `distribution` | String, default: \"uniform\" | The distribution type of random numbers to produce. One of 'uniform' or 'normal'. |"]]