@@ -94,7 +94,7 @@ tape( 'the function performs a Z-test over a one-dimensional ndarray (two-sided)
94
94
mu = scalar2ndarray ( 0.0 , opts ) ;
95
95
sigma = scalar2ndarray ( 1.0 , opts ) ;
96
96
97
- // Generate a large enough to array to effectively guarantee results...
97
+ // Generate a large enough array to effectively guarantee results...
98
98
xbuf = zeros ( 10000 , opts . dtype ) ;
99
99
normal ( xbuf . length , [ 0.0 ] , 0 , 0 , [ 1.0 ] , 0 , 0 , xbuf , 1 , 0 , RANDOM_OPTS ) ;
100
100
x = vector ( xbuf , xbuf . length , 1 , 0 ) ;
@@ -144,7 +144,7 @@ tape( 'the function performs a Z-test over a one-dimensional ndarray (less)', fu
144
144
mu = scalar2ndarray ( 0.0 , opts ) ;
145
145
sigma = scalar2ndarray ( 1.0 , opts ) ;
146
146
147
- // Generate a large enough to array to effectively guarantee results...
147
+ // Generate a large enough array to effectively guarantee results...
148
148
xbuf = zeros ( 10000 , opts . dtype ) ;
149
149
normal ( xbuf . length , [ - 1000.0 ] , 0 , 0 , [ 1.0 ] , 0 , 0 , xbuf , 1 , 0 , RANDOM_OPTS ) ;
150
150
x = vector ( xbuf , xbuf . length , 1 , 0 ) ;
@@ -188,7 +188,7 @@ tape( 'the function performs a Z-test over a one-dimensional ndarray (greater)',
188
188
mu = scalar2ndarray ( 0.0 , opts ) ;
189
189
sigma = scalar2ndarray ( 1.0 , opts ) ;
190
190
191
- // Generate a large enough to array to effectively guarantee results...
191
+ // Generate a large enough array to effectively guarantee results...
192
192
xbuf = zeros ( 10000 , opts . dtype ) ;
193
193
normal ( xbuf . length , [ - 1000.0 ] , 0 , 0 , [ 1.0 ] , 0 , 0 , xbuf , 1 , 0 , RANDOM_OPTS ) ;
194
194
x = vector ( xbuf , xbuf . length , 1 , 0 ) ;
@@ -232,7 +232,7 @@ tape( 'the function supports one-dimensional ndarrays having non-unit strides',
232
232
mu = scalar2ndarray ( 0.0 , opts ) ;
233
233
sigma = scalar2ndarray ( 1.0 , opts ) ;
234
234
235
- // Generate a large enough to array to effectively guarantee results...
235
+ // Generate a large enough array to effectively guarantee results...
236
236
xbuf = zeros ( 10000 , opts . dtype ) ;
237
237
normal ( 5000 , [ 0.0 ] , 0 , 0 , [ 1.0 ] , 0 , 0 , xbuf , 2 , 0 , RANDOM_OPTS ) ;
238
238
x = vector ( xbuf , 5000 , 2 , 0 ) ;
@@ -276,7 +276,7 @@ tape( 'the function supports one-dimensional ndarrays having non-zero offsets',
276
276
mu = scalar2ndarray ( 0.0 , opts ) ;
277
277
sigma = scalar2ndarray ( 1.0 , opts ) ;
278
278
279
- // Generate a large enough to array to effectively guarantee results...
279
+ // Generate a large enough array to effectively guarantee results...
280
280
xbuf = zeros ( 10000 , opts . dtype ) ;
281
281
normal ( 5000 , [ 0.0 ] , 0 , 0 , [ 1.0 ] , 0 , 0 , xbuf , 1 , 5000 , RANDOM_OPTS ) ;
282
282
x = vector ( xbuf , 5000 , 1 , 5000 ) ;
0 commit comments