@@ -172,10 +172,6 @@ def choose(a, choices, out=None, mode="raise"):
172
172
raise NotImplementedError
173
173
174
174
175
- def clip (a , a_min , a_max , out = None , ** kwargs ):
176
- raise NotImplementedError
177
-
178
-
179
175
def common_type (* arrays ):
180
176
raise NotImplementedError
181
177
@@ -216,22 +212,6 @@ def deprecate_with_doc(msg):
216
212
raise NotImplementedError
217
213
218
214
219
- def diag_indices (n , ndim = 2 ):
220
- raise NotImplementedError
221
-
222
-
223
- def diag_indices_from (arr ):
224
- raise NotImplementedError
225
-
226
-
227
- def diagflat (v , k = 0 ):
228
- raise NotImplementedError
229
-
230
-
231
- def diagonal (a , offset = 0 , axis1 = 0 , axis2 = 1 ):
232
- raise NotImplementedError
233
-
234
-
235
215
def digitize (x , bins , right = False ):
236
216
raise NotImplementedError
237
217
@@ -240,10 +220,6 @@ def disp(mesg, device=None, linefeed=True):
240
220
raise NotImplementedError
241
221
242
222
243
- def dot (a , b , out = None ):
244
- raise NotImplementedError
245
-
246
-
247
223
def ediff1d (ary , to_end = None , to_begin = None ):
248
224
raise NotImplementedError
249
225
@@ -260,10 +236,6 @@ def extract(condition, arr):
260
236
raise NotImplementedError
261
237
262
238
263
- def fill_diagonal (a , val , wrap = False ):
264
- raise NotImplementedError
265
-
266
-
267
239
def find_common_type (array_types , scalar_types ):
268
240
raise NotImplementedError
269
241
@@ -393,14 +365,6 @@ def in1d(ar1, ar2, assume_unique=False, invert=False):
393
365
raise NotImplementedError
394
366
395
367
396
- def indices (dimensions , dtype = int , sparse = False ):
397
- raise NotImplementedError
398
-
399
-
400
- def inner (a , b , / ):
401
- raise NotImplementedError
402
-
403
-
404
368
def insert (arr , obj , values , axis = None ):
405
369
raise NotImplementedError
406
370
@@ -417,10 +381,6 @@ def is_busday(dates, weekmask="1111100", holidays=None, busdaycal=None, out=None
417
381
raise NotImplementedError
418
382
419
383
420
- def isclose (a , b , rtol = 1e-05 , atol = 1e-08 , equal_nan = False ):
421
- raise NotImplementedError
422
-
423
-
424
384
def isfortran (a ):
425
385
raise NotImplementedError
426
386
@@ -437,14 +397,6 @@ def issctype(rep):
437
397
raise NotImplementedError
438
398
439
399
440
- def issubclass_ (arg1 , arg2 ):
441
- raise NotImplementedError
442
-
443
-
444
- def issubdtype (arg1 , arg2 ):
445
- raise NotImplementedError
446
-
447
-
448
400
def issubsctype (arg1 , arg2 ):
449
401
raise NotImplementedError
450
402
@@ -624,10 +576,6 @@ def obj2sctype(rep, default=None):
624
576
raise NotImplementedError
625
577
626
578
627
- def outer (a , b , out = None ):
628
- raise NotImplementedError
629
-
630
-
631
579
def packbits (a , / , axis = None , bitorder = "big" ):
632
580
raise NotImplementedError
633
581
@@ -696,10 +644,6 @@ def putmask(a, mask, values):
696
644
raise NotImplementedError
697
645
698
646
699
- def ravel (a , order = "C" ):
700
- raise NotImplementedError
701
-
702
-
703
647
def recfromcsv (fname , ** kwargs ):
704
648
raise NotImplementedError
705
649
@@ -754,10 +698,6 @@ def sctype2char(sctype):
754
698
raise NotImplementedError
755
699
756
700
757
- def searchsorted (a , v , side = "left" , sorter = None ):
758
- raise NotImplementedError
759
-
760
-
761
701
def select (condlist , choicelist , default = 0 ):
762
702
raise NotImplementedError
763
703
@@ -811,22 +751,10 @@ def show():
811
751
raise NotImplementedError
812
752
813
753
814
- def sinc (x ):
815
- raise NotImplementedError
816
-
817
-
818
- def sometrue (* args , ** kwargs ):
819
- raise NotImplementedError
820
-
821
-
822
754
def sort_complex (a ):
823
755
raise NotImplementedError
824
756
825
757
826
- def swapaxes (a , axis1 , axis2 ):
827
- raise NotImplementedError
828
-
829
-
830
758
def take (a , indices , axis = None , out = None , mode = "raise" ):
831
759
raise NotImplementedError
832
760
@@ -835,10 +763,6 @@ def tensordot(a, b, axes=2):
835
763
raise NotImplementedError
836
764
837
765
838
- def trace (a , offset = 0 , axis1 = 0 , axis2 = 1 , dtype = None , out = None ):
839
- raise NotImplementedError
840
-
841
-
842
766
def trapz (y , x = None , dx = 1.0 , axis = - 1 ):
843
767
raise NotImplementedError
844
768
@@ -855,18 +779,6 @@ def union1d(ar1, ar2):
855
779
raise NotImplementedError
856
780
857
781
858
- def unique (
859
- ar ,
860
- return_index = False ,
861
- return_inverse = False ,
862
- return_counts = False ,
863
- axis = None ,
864
- * ,
865
- equal_nan = True ,
866
- ):
867
- raise NotImplementedError
868
-
869
-
870
782
def unpackbits (a , / , axis = None , count = None , bitorder = "big" ):
871
783
raise NotImplementedError
872
784
@@ -875,13 +787,5 @@ def unwrap(p, discont=None, axis=-1, *, period=6.283185307179586):
875
787
raise NotImplementedError
876
788
877
789
878
- def vdot (a , b , / ):
879
- raise NotImplementedError
880
-
881
-
882
- def where (condition , x , y , / ):
883
- raise NotImplementedError
884
-
885
-
886
790
def who (vardict = None ):
887
791
raise NotImplementedError
0 commit comments