ee.Array.repeat
קל לארגן דפים בעזרת אוספים
אפשר לשמור ולסווג תוכן על סמך ההעדפות שלך.
חוזרת על המערך לאורך הציר הנתון. התוצאה תהיה בצורה של הקלט, למעט האורך לאורך הציר החוזר שיוכפל במספר העותקים הנתון.
שימוש | החזרות |
---|
Array.repeat(axis, copies) | מערך |
ארגומנט | סוג | פרטים |
---|
זה: array | מערך | מערך לחזרה. |
axis | מספר שלם, ברירת מחדל: 0 | הציר שלפיו חוזרים על המערך. |
copies | מספר שלם, ברירת מחדל: 2 | מספר העותקים של המערך הזה שצריך לשרשר לאורך הציר הנתון. |
אלא אם צוין אחרת, התוכן של דף זה הוא ברישיון Creative Commons Attribution 4.0 ודוגמאות הקוד הן ברישיון Apache 2.0. לפרטים, ניתן לעיין במדיניות האתר Google Developers. Java הוא סימן מסחרי רשום של חברת Oracle ו/או של השותפים העצמאיים שלה.
עדכון אחרון: 2025-07-26 (שעון UTC).
[null,null,["עדכון אחרון: 2025-07-26 (שעון UTC)."],[[["\u003cp\u003e\u003ccode\u003eArray.repeat()\u003c/code\u003e creates a new array by repeating the original array along a specified axis.\u003c/p\u003e\n"],["\u003cp\u003eThe size of the new array remains the same except for the specified axis, which is multiplied by the number of copies.\u003c/p\u003e\n"],["\u003cp\u003eYou can control which axis to repeat along and how many times using the \u003ccode\u003eaxis\u003c/code\u003e and \u003ccode\u003ecopies\u003c/code\u003e parameters.\u003c/p\u003e\n"],["\u003cp\u003eIt's a convenient way to expand an array by duplicating its elements.\u003c/p\u003e\n"]]],[],null,["# ee.Array.repeat\n\nRepeats the array along the given axis. The result will have the shape of the input, except length along the repeated axis will be multiplied by the given number of copies.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|---------------------------------------|---------|\n| Array.repeat`(`*axis* `, `*copies*`)` | Array |\n\n| Argument | Type | Details |\n|---------------|---------------------|-------------------------------------------------------------------------|\n| this: `array` | Array | Array to repeat. |\n| `axis` | Integer, default: 0 | The axis along which to repeat the array. |\n| `copies` | Integer, default: 2 | The number of copies of this array to concatenate along the given axis. |"]]