|
23 | 23 | import { ndarray, typedndarray, float64ndarray, float32ndarray, int32ndarray, int16ndarray, int8ndarray, uint32ndarray, uint16ndarray, uint8ndarray, uint8cndarray, complex128ndarray, complex64ndarray, DataType } from '@stdlib/types/ndarray'; |
24 | 24 |
|
25 | 25 | /** |
26 | | -* Creates a zero-filled array the same shape and data type as a provided input ndarray. |
| 26 | +* Creates a zero-filled array having the same shape and data type as a provided input ndarray. |
27 | 27 | * |
28 | 28 | * @param x - input array |
29 | 29 | * @returns zero-filled array |
@@ -52,7 +52,7 @@ import { ndarray, typedndarray, float64ndarray, float32ndarray, int32ndarray, in |
52 | 52 | declare function zerosLike( x: float64ndarray ): float64ndarray; |
53 | 53 |
|
54 | 54 | /** |
55 | | -* Creates a zero-filled array the same shape and data type as a provided input ndarray. |
| 55 | +* Creates a zero-filled array having the same shape and data type as a provided input ndarray. |
56 | 56 | * |
57 | 57 | * @param x - input array |
58 | 58 | * @returns zero-filled array |
@@ -81,7 +81,7 @@ declare function zerosLike( x: float64ndarray ): float64ndarray; |
81 | 81 | declare function zerosLike( x: float32ndarray ): float32ndarray; |
82 | 82 |
|
83 | 83 | /** |
84 | | -* Creates a zero-filled array the same shape and data type as a provided input ndarray. |
| 84 | +* Creates a zero-filled array having the same shape and data type as a provided input ndarray. |
85 | 85 | * |
86 | 86 | * @param x - input array |
87 | 87 | * @returns zero-filled array |
@@ -110,7 +110,7 @@ declare function zerosLike( x: float32ndarray ): float32ndarray; |
110 | 110 | declare function zerosLike( x: complex128ndarray ): complex128ndarray; |
111 | 111 |
|
112 | 112 | /** |
113 | | -* Creates a zero-filled array the same shape and data type as a provided input ndarray. |
| 113 | +* Creates a zero-filled array having the same shape and data type as a provided input ndarray. |
114 | 114 | * |
115 | 115 | * @param x - input array |
116 | 116 | * @returns zero-filled array |
@@ -139,7 +139,7 @@ declare function zerosLike( x: complex128ndarray ): complex128ndarray; |
139 | 139 | declare function zerosLike( x: complex64ndarray ): complex64ndarray; |
140 | 140 |
|
141 | 141 | /** |
142 | | -* Creates a zero-filled array the same shape and data type as a provided input ndarray. |
| 142 | +* Creates a zero-filled array having the same shape and data type as a provided input ndarray. |
143 | 143 | * |
144 | 144 | * @param x - input array |
145 | 145 | * @returns zero-filled array |
@@ -168,7 +168,7 @@ declare function zerosLike( x: complex64ndarray ): complex64ndarray; |
168 | 168 | declare function zerosLike( x: int32ndarray ): int32ndarray; |
169 | 169 |
|
170 | 170 | /** |
171 | | -* Creates a zero-filled array the same shape and data type as a provided input ndarray. |
| 171 | +* Creates a zero-filled array having the same shape and data type as a provided input ndarray. |
172 | 172 | * |
173 | 173 | * @param x - input array |
174 | 174 | * @returns zero-filled array |
@@ -197,7 +197,7 @@ declare function zerosLike( x: int32ndarray ): int32ndarray; |
197 | 197 | declare function zerosLike( x: int16ndarray ): int16ndarray; |
198 | 198 |
|
199 | 199 | /** |
200 | | -* Creates a zero-filled array the same shape and data type as a provided input ndarray. |
| 200 | +* Creates a zero-filled array having the same shape and data type as a provided input ndarray. |
201 | 201 | * |
202 | 202 | * @param x - input array |
203 | 203 | * @returns zero-filled array |
@@ -226,7 +226,7 @@ declare function zerosLike( x: int16ndarray ): int16ndarray; |
226 | 226 | declare function zerosLike( x: int8ndarray ): int8ndarray; |
227 | 227 |
|
228 | 228 | /** |
229 | | -* Creates a zero-filled array the same shape and data type as a provided input ndarray. |
| 229 | +* Creates a zero-filled array having the same shape and data type as a provided input ndarray. |
230 | 230 | * |
231 | 231 | * @param x - input array |
232 | 232 | * @returns zero-filled array |
@@ -255,7 +255,7 @@ declare function zerosLike( x: int8ndarray ): int8ndarray; |
255 | 255 | declare function zerosLike( x: uint32ndarray ): uint32ndarray; |
256 | 256 |
|
257 | 257 | /** |
258 | | -* Creates a zero-filled array the same shape and data type as a provided input ndarray. |
| 258 | +* Creates a zero-filled array having the same shape and data type as a provided input ndarray. |
259 | 259 | * |
260 | 260 | * @param x - input array |
261 | 261 | * @returns zero-filled array |
@@ -284,7 +284,7 @@ declare function zerosLike( x: uint32ndarray ): uint32ndarray; |
284 | 284 | declare function zerosLike( x: uint16ndarray ): uint16ndarray; |
285 | 285 |
|
286 | 286 | /** |
287 | | -* Creates a zero-filled array the same shape and data type as a provided input ndarray. |
| 287 | +* Creates a zero-filled array having the same shape and data type as a provided input ndarray. |
288 | 288 | * |
289 | 289 | * @param x - input array |
290 | 290 | * @returns zero-filled array |
@@ -313,7 +313,7 @@ declare function zerosLike( x: uint16ndarray ): uint16ndarray; |
313 | 313 | declare function zerosLike( x: uint8ndarray ): uint8ndarray; |
314 | 314 |
|
315 | 315 | /** |
316 | | -* Creates a zero-filled array the same shape and data type as a provided input ndarray. |
| 316 | +* Creates a zero-filled array having the same shape and data type as a provided input ndarray. |
317 | 317 | * |
318 | 318 | * @param x - input array |
319 | 319 | * @returns zero-filled array |
@@ -342,7 +342,7 @@ declare function zerosLike( x: uint8ndarray ): uint8ndarray; |
342 | 342 | declare function zerosLike( x: uint8cndarray ): uint8cndarray; |
343 | 343 |
|
344 | 344 | /** |
345 | | -* Creates a zero-filled array the same shape and data type as a provided input ndarray. |
| 345 | +* Creates a zero-filled array having the same shape and data type as a provided input ndarray. |
346 | 346 | * |
347 | 347 | * @param x - input array |
348 | 348 | * @returns zero-filled array |
|
0 commit comments