forked from SciSharp/NumSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathxrefmap.yml
More file actions
2988 lines (2988 loc) · 150 KB
/
xrefmap.yml
File metadata and controls
2988 lines (2988 loc) · 150 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
### YamlMime:XRefMap
sorted: true
references:
- uid: NumSharp.Core
name: NumSharp.Core
href: api/NumSharp.Core.html
commentId: N:NumSharp.Core
fullName: NumSharp.Core
nameWithType: NumSharp.Core
- uid: NumSharp.Core.Extensions
name: NumSharp.Core.Extensions
href: api/NumSharp.Core.Extensions.html
commentId: N:NumSharp.Core.Extensions
fullName: NumSharp.Core.Extensions
nameWithType: NumSharp.Core.Extensions
- uid: NumSharp.Core.Extensions.NDArrayExtensions
name: NDArrayExtensions
href: api/NumSharp.Core.Extensions.NDArrayExtensions.html
commentId: T:NumSharp.Core.Extensions.NDArrayExtensions
fullName: NumSharp.Core.Extensions.NDArrayExtensions
nameWithType: NDArrayExtensions
- uid: NumSharp.Core.Extensions.NDArrayExtensions.ArgMax*
name: ArgMax
href: api/NumSharp.Core.Extensions.NDArrayExtensions.html#NumSharp_Core_Extensions_NDArrayExtensions_ArgMax_
commentId: Overload:NumSharp.Core.Extensions.NDArrayExtensions.ArgMax
isSpec: "True"
fullName: NumSharp.Core.Extensions.NDArrayExtensions.ArgMax
nameWithType: NDArrayExtensions.ArgMax
- uid: NumSharp.Core.Extensions.NDArrayExtensions.ArgMax``1(NumSharp.Core.NDArray)
name: ArgMax<T>(NDArray)
href: api/NumSharp.Core.Extensions.NDArrayExtensions.html#NumSharp_Core_Extensions_NDArrayExtensions_ArgMax__1_NumSharp_Core_NDArray_
commentId: M:NumSharp.Core.Extensions.NDArrayExtensions.ArgMax``1(NumSharp.Core.NDArray)
name.vb: ArgMax(Of T)(NDArray)
fullName: NumSharp.Core.Extensions.NDArrayExtensions.ArgMax<T>(NumSharp.Core.NDArray)
fullName.vb: NumSharp.Core.Extensions.NDArrayExtensions.ArgMax(Of T)(NumSharp.Core.NDArray)
nameWithType: NDArrayExtensions.ArgMax<T>(NDArray)
nameWithType.vb: NDArrayExtensions.ArgMax(Of T)(NDArray)
- uid: NumSharp.Core.Extensions.NDArrayExtensions.AsMatrix(NumSharp.Core.NDArray)
name: AsMatrix(NDArray)
href: api/NumSharp.Core.Extensions.NDArrayExtensions.html#NumSharp_Core_Extensions_NDArrayExtensions_AsMatrix_NumSharp_Core_NDArray_
commentId: M:NumSharp.Core.Extensions.NDArrayExtensions.AsMatrix(NumSharp.Core.NDArray)
fullName: NumSharp.Core.Extensions.NDArrayExtensions.AsMatrix(NumSharp.Core.NDArray)
nameWithType: NDArrayExtensions.AsMatrix(NDArray)
- uid: NumSharp.Core.Extensions.NDArrayExtensions.AsMatrix*
name: AsMatrix
href: api/NumSharp.Core.Extensions.NDArrayExtensions.html#NumSharp_Core_Extensions_NDArrayExtensions_AsMatrix_
commentId: Overload:NumSharp.Core.Extensions.NDArrayExtensions.AsMatrix
isSpec: "True"
fullName: NumSharp.Core.Extensions.NDArrayExtensions.AsMatrix
nameWithType: NDArrayExtensions.AsMatrix
- uid: NumSharp.Core.Extensions.NDArrayExtensions.mean(NumSharp.Core.NDArray,System.Int32)
name: mean(NDArray, Int32)
href: api/NumSharp.Core.Extensions.NDArrayExtensions.html#NumSharp_Core_Extensions_NDArrayExtensions_mean_NumSharp_Core_NDArray_System_Int32_
commentId: M:NumSharp.Core.Extensions.NDArrayExtensions.mean(NumSharp.Core.NDArray,System.Int32)
fullName: NumSharp.Core.Extensions.NDArrayExtensions.mean(NumSharp.Core.NDArray, System.Int32)
nameWithType: NDArrayExtensions.mean(NDArray, Int32)
- uid: NumSharp.Core.Extensions.NDArrayExtensions.mean*
name: mean
href: api/NumSharp.Core.Extensions.NDArrayExtensions.html#NumSharp_Core_Extensions_NDArrayExtensions_mean_
commentId: Overload:NumSharp.Core.Extensions.NDArrayExtensions.mean
isSpec: "True"
fullName: NumSharp.Core.Extensions.NDArrayExtensions.mean
nameWithType: NDArrayExtensions.mean
- uid: NumSharp.Core.Interfaces
name: NumSharp.Core.Interfaces
href: api/NumSharp.Core.Interfaces.html
commentId: N:NumSharp.Core.Interfaces
fullName: NumSharp.Core.Interfaces
nameWithType: NumSharp.Core.Interfaces
- uid: NumSharp.Core.Interfaces.IShape
name: IShape
href: api/NumSharp.Core.Interfaces.IShape.html
commentId: T:NumSharp.Core.Interfaces.IShape
fullName: NumSharp.Core.Interfaces.IShape
nameWithType: IShape
- uid: NumSharp.Core.Interfaces.IShape.BiShape
name: BiShape
href: api/NumSharp.Core.Interfaces.IShape.html#NumSharp_Core_Interfaces_IShape_BiShape
commentId: P:NumSharp.Core.Interfaces.IShape.BiShape
fullName: NumSharp.Core.Interfaces.IShape.BiShape
nameWithType: IShape.BiShape
- uid: NumSharp.Core.Interfaces.IShape.BiShape*
name: BiShape
href: api/NumSharp.Core.Interfaces.IShape.html#NumSharp_Core_Interfaces_IShape_BiShape_
commentId: Overload:NumSharp.Core.Interfaces.IShape.BiShape
isSpec: "True"
fullName: NumSharp.Core.Interfaces.IShape.BiShape
nameWithType: IShape.BiShape
- uid: NumSharp.Core.Interfaces.IShape.ChangeTensorLayout(System.Int32)
name: ChangeTensorLayout(Int32)
href: api/NumSharp.Core.Interfaces.IShape.html#NumSharp_Core_Interfaces_IShape_ChangeTensorLayout_System_Int32_
commentId: M:NumSharp.Core.Interfaces.IShape.ChangeTensorLayout(System.Int32)
fullName: NumSharp.Core.Interfaces.IShape.ChangeTensorLayout(System.Int32)
nameWithType: IShape.ChangeTensorLayout(Int32)
- uid: NumSharp.Core.Interfaces.IShape.ChangeTensorLayout*
name: ChangeTensorLayout
href: api/NumSharp.Core.Interfaces.IShape.html#NumSharp_Core_Interfaces_IShape_ChangeTensorLayout_
commentId: Overload:NumSharp.Core.Interfaces.IShape.ChangeTensorLayout
isSpec: "True"
fullName: NumSharp.Core.Interfaces.IShape.ChangeTensorLayout
nameWithType: IShape.ChangeTensorLayout
- uid: NumSharp.Core.Interfaces.IShape.Dimensions
name: Dimensions
href: api/NumSharp.Core.Interfaces.IShape.html#NumSharp_Core_Interfaces_IShape_Dimensions
commentId: P:NumSharp.Core.Interfaces.IShape.Dimensions
fullName: NumSharp.Core.Interfaces.IShape.Dimensions
nameWithType: IShape.Dimensions
- uid: NumSharp.Core.Interfaces.IShape.Dimensions*
name: Dimensions
href: api/NumSharp.Core.Interfaces.IShape.html#NumSharp_Core_Interfaces_IShape_Dimensions_
commentId: Overload:NumSharp.Core.Interfaces.IShape.Dimensions
isSpec: "True"
fullName: NumSharp.Core.Interfaces.IShape.Dimensions
nameWithType: IShape.Dimensions
- uid: NumSharp.Core.Interfaces.IShape.DimOffset
name: DimOffset
href: api/NumSharp.Core.Interfaces.IShape.html#NumSharp_Core_Interfaces_IShape_DimOffset
commentId: P:NumSharp.Core.Interfaces.IShape.DimOffset
fullName: NumSharp.Core.Interfaces.IShape.DimOffset
nameWithType: IShape.DimOffset
- uid: NumSharp.Core.Interfaces.IShape.DimOffset*
name: DimOffset
href: api/NumSharp.Core.Interfaces.IShape.html#NumSharp_Core_Interfaces_IShape_DimOffset_
commentId: Overload:NumSharp.Core.Interfaces.IShape.DimOffset
isSpec: "True"
fullName: NumSharp.Core.Interfaces.IShape.DimOffset
nameWithType: IShape.DimOffset
- uid: NumSharp.Core.Interfaces.IShape.GetDimIndexOutShape(System.Int32)
name: GetDimIndexOutShape(Int32)
href: api/NumSharp.Core.Interfaces.IShape.html#NumSharp_Core_Interfaces_IShape_GetDimIndexOutShape_System_Int32_
commentId: M:NumSharp.Core.Interfaces.IShape.GetDimIndexOutShape(System.Int32)
fullName: NumSharp.Core.Interfaces.IShape.GetDimIndexOutShape(System.Int32)
nameWithType: IShape.GetDimIndexOutShape(Int32)
- uid: NumSharp.Core.Interfaces.IShape.GetDimIndexOutShape*
name: GetDimIndexOutShape
href: api/NumSharp.Core.Interfaces.IShape.html#NumSharp_Core_Interfaces_IShape_GetDimIndexOutShape_
commentId: Overload:NumSharp.Core.Interfaces.IShape.GetDimIndexOutShape
isSpec: "True"
fullName: NumSharp.Core.Interfaces.IShape.GetDimIndexOutShape
nameWithType: IShape.GetDimIndexOutShape
- uid: NumSharp.Core.Interfaces.IShape.GetIndexInShape(System.Int32[])
name: GetIndexInShape(Int32[])
href: api/NumSharp.Core.Interfaces.IShape.html#NumSharp_Core_Interfaces_IShape_GetIndexInShape_System_Int32___
commentId: M:NumSharp.Core.Interfaces.IShape.GetIndexInShape(System.Int32[])
name.vb: GetIndexInShape(Int32())
fullName: NumSharp.Core.Interfaces.IShape.GetIndexInShape(System.Int32[])
fullName.vb: NumSharp.Core.Interfaces.IShape.GetIndexInShape(System.Int32())
nameWithType: IShape.GetIndexInShape(Int32[])
nameWithType.vb: IShape.GetIndexInShape(Int32())
- uid: NumSharp.Core.Interfaces.IShape.GetIndexInShape*
name: GetIndexInShape
href: api/NumSharp.Core.Interfaces.IShape.html#NumSharp_Core_Interfaces_IShape_GetIndexInShape_
commentId: Overload:NumSharp.Core.Interfaces.IShape.GetIndexInShape
isSpec: "True"
fullName: NumSharp.Core.Interfaces.IShape.GetIndexInShape
nameWithType: IShape.GetIndexInShape
- uid: NumSharp.Core.Interfaces.IShape.NDim
name: NDim
href: api/NumSharp.Core.Interfaces.IShape.html#NumSharp_Core_Interfaces_IShape_NDim
commentId: P:NumSharp.Core.Interfaces.IShape.NDim
fullName: NumSharp.Core.Interfaces.IShape.NDim
nameWithType: IShape.NDim
- uid: NumSharp.Core.Interfaces.IShape.NDim*
name: NDim
href: api/NumSharp.Core.Interfaces.IShape.html#NumSharp_Core_Interfaces_IShape_NDim_
commentId: Overload:NumSharp.Core.Interfaces.IShape.NDim
isSpec: "True"
fullName: NumSharp.Core.Interfaces.IShape.NDim
nameWithType: IShape.NDim
- uid: NumSharp.Core.Interfaces.IShape.Size
name: Size
href: api/NumSharp.Core.Interfaces.IShape.html#NumSharp_Core_Interfaces_IShape_Size
commentId: P:NumSharp.Core.Interfaces.IShape.Size
fullName: NumSharp.Core.Interfaces.IShape.Size
nameWithType: IShape.Size
- uid: NumSharp.Core.Interfaces.IShape.Size*
name: Size
href: api/NumSharp.Core.Interfaces.IShape.html#NumSharp_Core_Interfaces_IShape_Size_
commentId: Overload:NumSharp.Core.Interfaces.IShape.Size
isSpec: "True"
fullName: NumSharp.Core.Interfaces.IShape.Size
nameWithType: IShape.Size
- uid: NumSharp.Core.Interfaces.IShape.TensorLayout
name: TensorLayout
href: api/NumSharp.Core.Interfaces.IShape.html#NumSharp_Core_Interfaces_IShape_TensorLayout
commentId: P:NumSharp.Core.Interfaces.IShape.TensorLayout
fullName: NumSharp.Core.Interfaces.IShape.TensorLayout
nameWithType: IShape.TensorLayout
- uid: NumSharp.Core.Interfaces.IShape.TensorLayout*
name: TensorLayout
href: api/NumSharp.Core.Interfaces.IShape.html#NumSharp_Core_Interfaces_IShape_TensorLayout_
commentId: Overload:NumSharp.Core.Interfaces.IShape.TensorLayout
isSpec: "True"
fullName: NumSharp.Core.Interfaces.IShape.TensorLayout
nameWithType: IShape.TensorLayout
- uid: NumSharp.Core.Interfaces.IShape.TriShape
name: TriShape
href: api/NumSharp.Core.Interfaces.IShape.html#NumSharp_Core_Interfaces_IShape_TriShape
commentId: P:NumSharp.Core.Interfaces.IShape.TriShape
fullName: NumSharp.Core.Interfaces.IShape.TriShape
nameWithType: IShape.TriShape
- uid: NumSharp.Core.Interfaces.IShape.TriShape*
name: TriShape
href: api/NumSharp.Core.Interfaces.IShape.html#NumSharp_Core_Interfaces_IShape_TriShape_
commentId: Overload:NumSharp.Core.Interfaces.IShape.TriShape
isSpec: "True"
fullName: NumSharp.Core.Interfaces.IShape.TriShape
nameWithType: IShape.TriShape
- uid: NumSharp.Core.Interfaces.IShape.UniShape
name: UniShape
href: api/NumSharp.Core.Interfaces.IShape.html#NumSharp_Core_Interfaces_IShape_UniShape
commentId: P:NumSharp.Core.Interfaces.IShape.UniShape
fullName: NumSharp.Core.Interfaces.IShape.UniShape
nameWithType: IShape.UniShape
- uid: NumSharp.Core.Interfaces.IShape.UniShape*
name: UniShape
href: api/NumSharp.Core.Interfaces.IShape.html#NumSharp_Core_Interfaces_IShape_UniShape_
commentId: Overload:NumSharp.Core.Interfaces.IShape.UniShape
isSpec: "True"
fullName: NumSharp.Core.Interfaces.IShape.UniShape
nameWithType: IShape.UniShape
- uid: NumSharp.Core.Interfaces.IStorage
name: IStorage
href: api/NumSharp.Core.Interfaces.IStorage.html
commentId: T:NumSharp.Core.Interfaces.IStorage
fullName: NumSharp.Core.Interfaces.IStorage
nameWithType: IStorage
- uid: NumSharp.Core.Interfaces.IStorage.Allocate(System.Array,System.Int32)
name: Allocate(Array, Int32)
href: api/NumSharp.Core.Interfaces.IStorage.html#NumSharp_Core_Interfaces_IStorage_Allocate_System_Array_System_Int32_
commentId: M:NumSharp.Core.Interfaces.IStorage.Allocate(System.Array,System.Int32)
fullName: NumSharp.Core.Interfaces.IStorage.Allocate(System.Array, System.Int32)
nameWithType: IStorage.Allocate(Array, Int32)
- uid: NumSharp.Core.Interfaces.IStorage.Allocate(System.Type,NumSharp.Core.Interfaces.IShape,System.Int32)
name: Allocate(Type, IShape, Int32)
href: api/NumSharp.Core.Interfaces.IStorage.html#NumSharp_Core_Interfaces_IStorage_Allocate_System_Type_NumSharp_Core_Interfaces_IShape_System_Int32_
commentId: M:NumSharp.Core.Interfaces.IStorage.Allocate(System.Type,NumSharp.Core.Interfaces.IShape,System.Int32)
fullName: NumSharp.Core.Interfaces.IStorage.Allocate(System.Type, NumSharp.Core.Interfaces.IShape, System.Int32)
nameWithType: IStorage.Allocate(Type, IShape, Int32)
- uid: NumSharp.Core.Interfaces.IStorage.Allocate*
name: Allocate
href: api/NumSharp.Core.Interfaces.IStorage.html#NumSharp_Core_Interfaces_IStorage_Allocate_
commentId: Overload:NumSharp.Core.Interfaces.IStorage.Allocate
isSpec: "True"
fullName: NumSharp.Core.Interfaces.IStorage.Allocate
nameWithType: IStorage.Allocate
- uid: NumSharp.Core.Interfaces.IStorage.ChangeDataType(System.Type)
name: ChangeDataType(Type)
href: api/NumSharp.Core.Interfaces.IStorage.html#NumSharp_Core_Interfaces_IStorage_ChangeDataType_System_Type_
commentId: M:NumSharp.Core.Interfaces.IStorage.ChangeDataType(System.Type)
fullName: NumSharp.Core.Interfaces.IStorage.ChangeDataType(System.Type)
nameWithType: IStorage.ChangeDataType(Type)
- uid: NumSharp.Core.Interfaces.IStorage.ChangeDataType*
name: ChangeDataType
href: api/NumSharp.Core.Interfaces.IStorage.html#NumSharp_Core_Interfaces_IStorage_ChangeDataType_
commentId: Overload:NumSharp.Core.Interfaces.IStorage.ChangeDataType
isSpec: "True"
fullName: NumSharp.Core.Interfaces.IStorage.ChangeDataType
nameWithType: IStorage.ChangeDataType
- uid: NumSharp.Core.Interfaces.IStorage.ChangeTensorLayout(System.Int32)
name: ChangeTensorLayout(Int32)
href: api/NumSharp.Core.Interfaces.IStorage.html#NumSharp_Core_Interfaces_IStorage_ChangeTensorLayout_System_Int32_
commentId: M:NumSharp.Core.Interfaces.IStorage.ChangeTensorLayout(System.Int32)
fullName: NumSharp.Core.Interfaces.IStorage.ChangeTensorLayout(System.Int32)
nameWithType: IStorage.ChangeTensorLayout(Int32)
- uid: NumSharp.Core.Interfaces.IStorage.ChangeTensorLayout*
name: ChangeTensorLayout
href: api/NumSharp.Core.Interfaces.IStorage.html#NumSharp_Core_Interfaces_IStorage_ChangeTensorLayout_
commentId: Overload:NumSharp.Core.Interfaces.IStorage.ChangeTensorLayout
isSpec: "True"
fullName: NumSharp.Core.Interfaces.IStorage.ChangeTensorLayout
nameWithType: IStorage.ChangeTensorLayout
- uid: NumSharp.Core.Interfaces.IStorage.CloneData
name: CloneData()
href: api/NumSharp.Core.Interfaces.IStorage.html#NumSharp_Core_Interfaces_IStorage_CloneData
commentId: M:NumSharp.Core.Interfaces.IStorage.CloneData
fullName: NumSharp.Core.Interfaces.IStorage.CloneData()
nameWithType: IStorage.CloneData()
- uid: NumSharp.Core.Interfaces.IStorage.CloneData(System.Type)
name: CloneData(Type)
href: api/NumSharp.Core.Interfaces.IStorage.html#NumSharp_Core_Interfaces_IStorage_CloneData_System_Type_
commentId: M:NumSharp.Core.Interfaces.IStorage.CloneData(System.Type)
fullName: NumSharp.Core.Interfaces.IStorage.CloneData(System.Type)
nameWithType: IStorage.CloneData(Type)
- uid: NumSharp.Core.Interfaces.IStorage.CloneData*
name: CloneData
href: api/NumSharp.Core.Interfaces.IStorage.html#NumSharp_Core_Interfaces_IStorage_CloneData_
commentId: Overload:NumSharp.Core.Interfaces.IStorage.CloneData
isSpec: "True"
fullName: NumSharp.Core.Interfaces.IStorage.CloneData
nameWithType: IStorage.CloneData
- uid: NumSharp.Core.Interfaces.IStorage.CloneData``1
name: CloneData<T>()
href: api/NumSharp.Core.Interfaces.IStorage.html#NumSharp_Core_Interfaces_IStorage_CloneData__1
commentId: M:NumSharp.Core.Interfaces.IStorage.CloneData``1
name.vb: CloneData(Of T)()
fullName: NumSharp.Core.Interfaces.IStorage.CloneData<T>()
fullName.vb: NumSharp.Core.Interfaces.IStorage.CloneData(Of T)()
nameWithType: IStorage.CloneData<T>()
nameWithType.vb: IStorage.CloneData(Of T)()
- uid: NumSharp.Core.Interfaces.IStorage.DType
name: DType
href: api/NumSharp.Core.Interfaces.IStorage.html#NumSharp_Core_Interfaces_IStorage_DType
commentId: P:NumSharp.Core.Interfaces.IStorage.DType
fullName: NumSharp.Core.Interfaces.IStorage.DType
nameWithType: IStorage.DType
- uid: NumSharp.Core.Interfaces.IStorage.DType*
name: DType
href: api/NumSharp.Core.Interfaces.IStorage.html#NumSharp_Core_Interfaces_IStorage_DType_
commentId: Overload:NumSharp.Core.Interfaces.IStorage.DType
isSpec: "True"
fullName: NumSharp.Core.Interfaces.IStorage.DType
nameWithType: IStorage.DType
- uid: NumSharp.Core.Interfaces.IStorage.GetColumWiseStorage
name: GetColumWiseStorage()
href: api/NumSharp.Core.Interfaces.IStorage.html#NumSharp_Core_Interfaces_IStorage_GetColumWiseStorage
commentId: M:NumSharp.Core.Interfaces.IStorage.GetColumWiseStorage
fullName: NumSharp.Core.Interfaces.IStorage.GetColumWiseStorage()
nameWithType: IStorage.GetColumWiseStorage()
- uid: NumSharp.Core.Interfaces.IStorage.GetColumWiseStorage*
name: GetColumWiseStorage
href: api/NumSharp.Core.Interfaces.IStorage.html#NumSharp_Core_Interfaces_IStorage_GetColumWiseStorage_
commentId: Overload:NumSharp.Core.Interfaces.IStorage.GetColumWiseStorage
isSpec: "True"
fullName: NumSharp.Core.Interfaces.IStorage.GetColumWiseStorage
nameWithType: IStorage.GetColumWiseStorage
- uid: NumSharp.Core.Interfaces.IStorage.GetData
name: GetData()
href: api/NumSharp.Core.Interfaces.IStorage.html#NumSharp_Core_Interfaces_IStorage_GetData
commentId: M:NumSharp.Core.Interfaces.IStorage.GetData
fullName: NumSharp.Core.Interfaces.IStorage.GetData()
nameWithType: IStorage.GetData()
- uid: NumSharp.Core.Interfaces.IStorage.GetData(System.Int32[])
name: GetData(Int32[])
href: api/NumSharp.Core.Interfaces.IStorage.html#NumSharp_Core_Interfaces_IStorage_GetData_System_Int32___
commentId: M:NumSharp.Core.Interfaces.IStorage.GetData(System.Int32[])
name.vb: GetData(Int32())
fullName: NumSharp.Core.Interfaces.IStorage.GetData(System.Int32[])
fullName.vb: NumSharp.Core.Interfaces.IStorage.GetData(System.Int32())
nameWithType: IStorage.GetData(Int32[])
nameWithType.vb: IStorage.GetData(Int32())
- uid: NumSharp.Core.Interfaces.IStorage.GetData(System.Type)
name: GetData(Type)
href: api/NumSharp.Core.Interfaces.IStorage.html#NumSharp_Core_Interfaces_IStorage_GetData_System_Type_
commentId: M:NumSharp.Core.Interfaces.IStorage.GetData(System.Type)
fullName: NumSharp.Core.Interfaces.IStorage.GetData(System.Type)
nameWithType: IStorage.GetData(Type)
- uid: NumSharp.Core.Interfaces.IStorage.GetData*
name: GetData
href: api/NumSharp.Core.Interfaces.IStorage.html#NumSharp_Core_Interfaces_IStorage_GetData_
commentId: Overload:NumSharp.Core.Interfaces.IStorage.GetData
isSpec: "True"
fullName: NumSharp.Core.Interfaces.IStorage.GetData
nameWithType: IStorage.GetData
- uid: NumSharp.Core.Interfaces.IStorage.GetData``1
name: GetData<T>()
href: api/NumSharp.Core.Interfaces.IStorage.html#NumSharp_Core_Interfaces_IStorage_GetData__1
commentId: M:NumSharp.Core.Interfaces.IStorage.GetData``1
name.vb: GetData(Of T)()
fullName: NumSharp.Core.Interfaces.IStorage.GetData<T>()
fullName.vb: NumSharp.Core.Interfaces.IStorage.GetData(Of T)()
nameWithType: IStorage.GetData<T>()
nameWithType.vb: IStorage.GetData(Of T)()
- uid: NumSharp.Core.Interfaces.IStorage.GetData``1(System.Int32[])
name: GetData<T>(Int32[])
href: api/NumSharp.Core.Interfaces.IStorage.html#NumSharp_Core_Interfaces_IStorage_GetData__1_System_Int32___
commentId: M:NumSharp.Core.Interfaces.IStorage.GetData``1(System.Int32[])
name.vb: GetData(Of T)(Int32())
fullName: NumSharp.Core.Interfaces.IStorage.GetData<T>(System.Int32[])
fullName.vb: NumSharp.Core.Interfaces.IStorage.GetData(Of T)(System.Int32())
nameWithType: IStorage.GetData<T>(Int32[])
nameWithType.vb: IStorage.GetData(Of T)(Int32())
- uid: NumSharp.Core.Interfaces.IStorage.GetRowWiseStorage
name: GetRowWiseStorage()
href: api/NumSharp.Core.Interfaces.IStorage.html#NumSharp_Core_Interfaces_IStorage_GetRowWiseStorage
commentId: M:NumSharp.Core.Interfaces.IStorage.GetRowWiseStorage
fullName: NumSharp.Core.Interfaces.IStorage.GetRowWiseStorage()
nameWithType: IStorage.GetRowWiseStorage()
- uid: NumSharp.Core.Interfaces.IStorage.GetRowWiseStorage*
name: GetRowWiseStorage
href: api/NumSharp.Core.Interfaces.IStorage.html#NumSharp_Core_Interfaces_IStorage_GetRowWiseStorage_
commentId: Overload:NumSharp.Core.Interfaces.IStorage.GetRowWiseStorage
isSpec: "True"
fullName: NumSharp.Core.Interfaces.IStorage.GetRowWiseStorage
nameWithType: IStorage.GetRowWiseStorage
- uid: NumSharp.Core.Interfaces.IStorage.Reshape(System.Int32[])
name: Reshape(Int32[])
href: api/NumSharp.Core.Interfaces.IStorage.html#NumSharp_Core_Interfaces_IStorage_Reshape_System_Int32___
commentId: M:NumSharp.Core.Interfaces.IStorage.Reshape(System.Int32[])
name.vb: Reshape(Int32())
fullName: NumSharp.Core.Interfaces.IStorage.Reshape(System.Int32[])
fullName.vb: NumSharp.Core.Interfaces.IStorage.Reshape(System.Int32())
nameWithType: IStorage.Reshape(Int32[])
nameWithType.vb: IStorage.Reshape(Int32())
- uid: NumSharp.Core.Interfaces.IStorage.Reshape*
name: Reshape
href: api/NumSharp.Core.Interfaces.IStorage.html#NumSharp_Core_Interfaces_IStorage_Reshape_
commentId: Overload:NumSharp.Core.Interfaces.IStorage.Reshape
isSpec: "True"
fullName: NumSharp.Core.Interfaces.IStorage.Reshape
nameWithType: IStorage.Reshape
- uid: NumSharp.Core.Interfaces.IStorage.SetData(System.Array)
name: SetData(Array)
href: api/NumSharp.Core.Interfaces.IStorage.html#NumSharp_Core_Interfaces_IStorage_SetData_System_Array_
commentId: M:NumSharp.Core.Interfaces.IStorage.SetData(System.Array)
fullName: NumSharp.Core.Interfaces.IStorage.SetData(System.Array)
nameWithType: IStorage.SetData(Array)
- uid: NumSharp.Core.Interfaces.IStorage.SetData(System.Array,System.Type)
name: SetData(Array, Type)
href: api/NumSharp.Core.Interfaces.IStorage.html#NumSharp_Core_Interfaces_IStorage_SetData_System_Array_System_Type_
commentId: M:NumSharp.Core.Interfaces.IStorage.SetData(System.Array,System.Type)
fullName: NumSharp.Core.Interfaces.IStorage.SetData(System.Array, System.Type)
nameWithType: IStorage.SetData(Array, Type)
- uid: NumSharp.Core.Interfaces.IStorage.SetData(System.Object,System.Int32[])
name: SetData(Object, Int32[])
href: api/NumSharp.Core.Interfaces.IStorage.html#NumSharp_Core_Interfaces_IStorage_SetData_System_Object_System_Int32___
commentId: M:NumSharp.Core.Interfaces.IStorage.SetData(System.Object,System.Int32[])
name.vb: SetData(Object, Int32())
fullName: NumSharp.Core.Interfaces.IStorage.SetData(System.Object, System.Int32[])
fullName.vb: NumSharp.Core.Interfaces.IStorage.SetData(System.Object, System.Int32())
nameWithType: IStorage.SetData(Object, Int32[])
nameWithType.vb: IStorage.SetData(Object, Int32())
- uid: NumSharp.Core.Interfaces.IStorage.SetData*
name: SetData
href: api/NumSharp.Core.Interfaces.IStorage.html#NumSharp_Core_Interfaces_IStorage_SetData_
commentId: Overload:NumSharp.Core.Interfaces.IStorage.SetData
isSpec: "True"
fullName: NumSharp.Core.Interfaces.IStorage.SetData
nameWithType: IStorage.SetData
- uid: NumSharp.Core.Interfaces.IStorage.Shape
name: Shape
href: api/NumSharp.Core.Interfaces.IStorage.html#NumSharp_Core_Interfaces_IStorage_Shape
commentId: P:NumSharp.Core.Interfaces.IStorage.Shape
fullName: NumSharp.Core.Interfaces.IStorage.Shape
nameWithType: IStorage.Shape
- uid: NumSharp.Core.Interfaces.IStorage.Shape*
name: Shape
href: api/NumSharp.Core.Interfaces.IStorage.html#NumSharp_Core_Interfaces_IStorage_Shape_
commentId: Overload:NumSharp.Core.Interfaces.IStorage.Shape
isSpec: "True"
fullName: NumSharp.Core.Interfaces.IStorage.Shape
nameWithType: IStorage.Shape
- uid: NumSharp.Core.Interfaces.IStorage.TensorLayout
name: TensorLayout
href: api/NumSharp.Core.Interfaces.IStorage.html#NumSharp_Core_Interfaces_IStorage_TensorLayout
commentId: P:NumSharp.Core.Interfaces.IStorage.TensorLayout
fullName: NumSharp.Core.Interfaces.IStorage.TensorLayout
nameWithType: IStorage.TensorLayout
- uid: NumSharp.Core.Interfaces.IStorage.TensorLayout*
name: TensorLayout
href: api/NumSharp.Core.Interfaces.IStorage.html#NumSharp_Core_Interfaces_IStorage_TensorLayout_
commentId: Overload:NumSharp.Core.Interfaces.IStorage.TensorLayout
isSpec: "True"
fullName: NumSharp.Core.Interfaces.IStorage.TensorLayout
nameWithType: IStorage.TensorLayout
- uid: NumSharp.Core.LAPACK
name: LAPACK
href: api/NumSharp.Core.LAPACK.html
commentId: T:NumSharp.Core.LAPACK
fullName: NumSharp.Core.LAPACK
nameWithType: LAPACK
- uid: NumSharp.Core.LAPACK.dgelss_(System.Int32@,System.Int32@,System.Int32@,System.Double[],System.Int32@,System.Double[],System.Int32@,System.Double[],System.Double@,System.Int32@,System.Double[],System.Int32@,System.Int32@)
name: dgelss_(ref Int32, ref Int32, ref Int32, Double[], ref Int32, Double[], ref Int32, Double[], ref Double, ref Int32, Double[], ref Int32, ref Int32)
href: api/NumSharp.Core.LAPACK.html#NumSharp_Core_LAPACK_dgelss__System_Int32__System_Int32__System_Int32__System_Double___System_Int32__System_Double___System_Int32__System_Double___System_Double__System_Int32__System_Double___System_Int32__System_Int32__
commentId: M:NumSharp.Core.LAPACK.dgelss_(System.Int32@,System.Int32@,System.Int32@,System.Double[],System.Int32@,System.Double[],System.Int32@,System.Double[],System.Double@,System.Int32@,System.Double[],System.Int32@,System.Int32@)
name.vb: dgelss_(ByRef Int32, ByRef Int32, ByRef Int32, Double(), ByRef Int32, Double(), ByRef Int32, Double(), ByRef Double, ByRef Int32, Double(), ByRef Int32, ByRef Int32)
fullName: NumSharp.Core.LAPACK.dgelss_(ref System.Int32, ref System.Int32, ref System.Int32, System.Double[], ref System.Int32, System.Double[], ref System.Int32, System.Double[], ref System.Double, ref System.Int32, System.Double[], ref System.Int32, ref System.Int32)
fullName.vb: NumSharp.Core.LAPACK.dgelss_(ByRef System.Int32, ByRef System.Int32, ByRef System.Int32, System.Double(), ByRef System.Int32, System.Double(), ByRef System.Int32, System.Double(), ByRef System.Double, ByRef System.Int32, System.Double(), ByRef System.Int32, ByRef System.Int32)
nameWithType: LAPACK.dgelss_(ref Int32, ref Int32, ref Int32, Double[], ref Int32, Double[], ref Int32, Double[], ref Double, ref Int32, Double[], ref Int32, ref Int32)
nameWithType.vb: LAPACK.dgelss_(ByRef Int32, ByRef Int32, ByRef Int32, Double(), ByRef Int32, Double(), ByRef Int32, Double(), ByRef Double, ByRef Int32, Double(), ByRef Int32, ByRef Int32)
- uid: NumSharp.Core.LAPACK.dgelss_*
name: dgelss_
href: api/NumSharp.Core.LAPACK.html#NumSharp_Core_LAPACK_dgelss__
commentId: Overload:NumSharp.Core.LAPACK.dgelss_
fullName: NumSharp.Core.LAPACK.dgelss_
nameWithType: LAPACK.dgelss_
- uid: NumSharp.Core.LAPACK.dgelsy_(System.Int32@,System.Int32@,System.Int32@,System.Double[],System.Int32@,System.Double[],System.Int32@,System.Int32[],System.Double@,System.Int32@,System.Double[],System.Int32@,System.Int32@)
name: dgelsy_(ref Int32, ref Int32, ref Int32, Double[], ref Int32, Double[], ref Int32, Int32[], ref Double, ref Int32, Double[], ref Int32, ref Int32)
href: api/NumSharp.Core.LAPACK.html#NumSharp_Core_LAPACK_dgelsy__System_Int32__System_Int32__System_Int32__System_Double___System_Int32__System_Double___System_Int32__System_Int32___System_Double__System_Int32__System_Double___System_Int32__System_Int32__
commentId: M:NumSharp.Core.LAPACK.dgelsy_(System.Int32@,System.Int32@,System.Int32@,System.Double[],System.Int32@,System.Double[],System.Int32@,System.Int32[],System.Double@,System.Int32@,System.Double[],System.Int32@,System.Int32@)
name.vb: dgelsy_(ByRef Int32, ByRef Int32, ByRef Int32, Double(), ByRef Int32, Double(), ByRef Int32, Int32(), ByRef Double, ByRef Int32, Double(), ByRef Int32, ByRef Int32)
fullName: NumSharp.Core.LAPACK.dgelsy_(ref System.Int32, ref System.Int32, ref System.Int32, System.Double[], ref System.Int32, System.Double[], ref System.Int32, System.Int32[], ref System.Double, ref System.Int32, System.Double[], ref System.Int32, ref System.Int32)
fullName.vb: NumSharp.Core.LAPACK.dgelsy_(ByRef System.Int32, ByRef System.Int32, ByRef System.Int32, System.Double(), ByRef System.Int32, System.Double(), ByRef System.Int32, System.Int32(), ByRef System.Double, ByRef System.Int32, System.Double(), ByRef System.Int32, ByRef System.Int32)
nameWithType: LAPACK.dgelsy_(ref Int32, ref Int32, ref Int32, Double[], ref Int32, Double[], ref Int32, Int32[], ref Double, ref Int32, Double[], ref Int32, ref Int32)
nameWithType.vb: LAPACK.dgelsy_(ByRef Int32, ByRef Int32, ByRef Int32, Double(), ByRef Int32, Double(), ByRef Int32, Int32(), ByRef Double, ByRef Int32, Double(), ByRef Int32, ByRef Int32)
- uid: NumSharp.Core.LAPACK.dgelsy_*
name: dgelsy_
href: api/NumSharp.Core.LAPACK.html#NumSharp_Core_LAPACK_dgelsy__
commentId: Overload:NumSharp.Core.LAPACK.dgelsy_
fullName: NumSharp.Core.LAPACK.dgelsy_
nameWithType: LAPACK.dgelsy_
- uid: NumSharp.Core.LAPACK.dgeqrf_(System.Int32@,System.Int32@,System.Double[],System.Int32@,System.Double[],System.Double[],System.Int32@,System.Int32@)
name: dgeqrf_(ref Int32, ref Int32, Double[], ref Int32, Double[], Double[], ref Int32, ref Int32)
href: api/NumSharp.Core.LAPACK.html#NumSharp_Core_LAPACK_dgeqrf__System_Int32__System_Int32__System_Double___System_Int32__System_Double___System_Double___System_Int32__System_Int32__
commentId: M:NumSharp.Core.LAPACK.dgeqrf_(System.Int32@,System.Int32@,System.Double[],System.Int32@,System.Double[],System.Double[],System.Int32@,System.Int32@)
name.vb: dgeqrf_(ByRef Int32, ByRef Int32, Double(), ByRef Int32, Double(), Double(), ByRef Int32, ByRef Int32)
fullName: NumSharp.Core.LAPACK.dgeqrf_(ref System.Int32, ref System.Int32, System.Double[], ref System.Int32, System.Double[], System.Double[], ref System.Int32, ref System.Int32)
fullName.vb: NumSharp.Core.LAPACK.dgeqrf_(ByRef System.Int32, ByRef System.Int32, System.Double(), ByRef System.Int32, System.Double(), System.Double(), ByRef System.Int32, ByRef System.Int32)
nameWithType: LAPACK.dgeqrf_(ref Int32, ref Int32, Double[], ref Int32, Double[], Double[], ref Int32, ref Int32)
nameWithType.vb: LAPACK.dgeqrf_(ByRef Int32, ByRef Int32, Double(), ByRef Int32, Double(), Double(), ByRef Int32, ByRef Int32)
- uid: NumSharp.Core.LAPACK.dgeqrf_*
name: dgeqrf_
href: api/NumSharp.Core.LAPACK.html#NumSharp_Core_LAPACK_dgeqrf__
commentId: Overload:NumSharp.Core.LAPACK.dgeqrf_
fullName: NumSharp.Core.LAPACK.dgeqrf_
nameWithType: LAPACK.dgeqrf_
- uid: NumSharp.Core.LAPACK.dgesv_(System.Int32@,System.Int32@,System.Double[],System.Int32@,System.Int32[],System.Double[],System.Int32@,System.Int32@)
name: dgesv_(ref Int32, ref Int32, Double[], ref Int32, Int32[], Double[], ref Int32, ref Int32)
href: api/NumSharp.Core.LAPACK.html#NumSharp_Core_LAPACK_dgesv__System_Int32__System_Int32__System_Double___System_Int32__System_Int32___System_Double___System_Int32__System_Int32__
commentId: M:NumSharp.Core.LAPACK.dgesv_(System.Int32@,System.Int32@,System.Double[],System.Int32@,System.Int32[],System.Double[],System.Int32@,System.Int32@)
name.vb: dgesv_(ByRef Int32, ByRef Int32, Double(), ByRef Int32, Int32(), Double(), ByRef Int32, ByRef Int32)
fullName: NumSharp.Core.LAPACK.dgesv_(ref System.Int32, ref System.Int32, System.Double[], ref System.Int32, System.Int32[], System.Double[], ref System.Int32, ref System.Int32)
fullName.vb: NumSharp.Core.LAPACK.dgesv_(ByRef System.Int32, ByRef System.Int32, System.Double(), ByRef System.Int32, System.Int32(), System.Double(), ByRef System.Int32, ByRef System.Int32)
nameWithType: LAPACK.dgesv_(ref Int32, ref Int32, Double[], ref Int32, Int32[], Double[], ref Int32, ref Int32)
nameWithType.vb: LAPACK.dgesv_(ByRef Int32, ByRef Int32, Double(), ByRef Int32, Int32(), Double(), ByRef Int32, ByRef Int32)
- uid: NumSharp.Core.LAPACK.dgesv_*
name: dgesv_
href: api/NumSharp.Core.LAPACK.html#NumSharp_Core_LAPACK_dgesv__
commentId: Overload:NumSharp.Core.LAPACK.dgesv_
fullName: NumSharp.Core.LAPACK.dgesv_
nameWithType: LAPACK.dgesv_
- uid: NumSharp.Core.LAPACK.dgesvd_(System.Char[],System.Char[],System.Int32@,System.Int32@,System.Double[],System.Int32@,System.Double[],System.Double[],System.Int32@,System.Double[],System.Int32@,System.Double[],System.Int32@,System.Int32@)
name: dgesvd_(Char[], Char[], ref Int32, ref Int32, Double[], ref Int32, Double[], Double[], ref Int32, Double[], ref Int32, Double[], ref Int32, ref Int32)
href: api/NumSharp.Core.LAPACK.html#NumSharp_Core_LAPACK_dgesvd__System_Char___System_Char___System_Int32__System_Int32__System_Double___System_Int32__System_Double___System_Double___System_Int32__System_Double___System_Int32__System_Double___System_Int32__System_Int32__
commentId: M:NumSharp.Core.LAPACK.dgesvd_(System.Char[],System.Char[],System.Int32@,System.Int32@,System.Double[],System.Int32@,System.Double[],System.Double[],System.Int32@,System.Double[],System.Int32@,System.Double[],System.Int32@,System.Int32@)
name.vb: dgesvd_(Char(), Char(), ByRef Int32, ByRef Int32, Double(), ByRef Int32, Double(), Double(), ByRef Int32, Double(), ByRef Int32, Double(), ByRef Int32, ByRef Int32)
fullName: NumSharp.Core.LAPACK.dgesvd_(System.Char[], System.Char[], ref System.Int32, ref System.Int32, System.Double[], ref System.Int32, System.Double[], System.Double[], ref System.Int32, System.Double[], ref System.Int32, System.Double[], ref System.Int32, ref System.Int32)
fullName.vb: NumSharp.Core.LAPACK.dgesvd_(System.Char(), System.Char(), ByRef System.Int32, ByRef System.Int32, System.Double(), ByRef System.Int32, System.Double(), System.Double(), ByRef System.Int32, System.Double(), ByRef System.Int32, System.Double(), ByRef System.Int32, ByRef System.Int32)
nameWithType: LAPACK.dgesvd_(Char[], Char[], ref Int32, ref Int32, Double[], ref Int32, Double[], Double[], ref Int32, Double[], ref Int32, Double[], ref Int32, ref Int32)
nameWithType.vb: LAPACK.dgesvd_(Char(), Char(), ByRef Int32, ByRef Int32, Double(), ByRef Int32, Double(), Double(), ByRef Int32, Double(), ByRef Int32, Double(), ByRef Int32, ByRef Int32)
- uid: NumSharp.Core.LAPACK.dgesvd_*
name: dgesvd_
href: api/NumSharp.Core.LAPACK.html#NumSharp_Core_LAPACK_dgesvd__
commentId: Overload:NumSharp.Core.LAPACK.dgesvd_
fullName: NumSharp.Core.LAPACK.dgesvd_
nameWithType: LAPACK.dgesvd_
- uid: NumSharp.Core.LAPACK.dorgqr_(System.Int32@,System.Int32@,System.Int32@,System.Double[],System.Int32@,System.Double[],System.Double[],System.Int32@,System.Int32@)
name: dorgqr_(ref Int32, ref Int32, ref Int32, Double[], ref Int32, Double[], Double[], ref Int32, ref Int32)
href: api/NumSharp.Core.LAPACK.html#NumSharp_Core_LAPACK_dorgqr__System_Int32__System_Int32__System_Int32__System_Double___System_Int32__System_Double___System_Double___System_Int32__System_Int32__
commentId: M:NumSharp.Core.LAPACK.dorgqr_(System.Int32@,System.Int32@,System.Int32@,System.Double[],System.Int32@,System.Double[],System.Double[],System.Int32@,System.Int32@)
name.vb: dorgqr_(ByRef Int32, ByRef Int32, ByRef Int32, Double(), ByRef Int32, Double(), Double(), ByRef Int32, ByRef Int32)
fullName: NumSharp.Core.LAPACK.dorgqr_(ref System.Int32, ref System.Int32, ref System.Int32, System.Double[], ref System.Int32, System.Double[], System.Double[], ref System.Int32, ref System.Int32)
fullName.vb: NumSharp.Core.LAPACK.dorgqr_(ByRef System.Int32, ByRef System.Int32, ByRef System.Int32, System.Double(), ByRef System.Int32, System.Double(), System.Double(), ByRef System.Int32, ByRef System.Int32)
nameWithType: LAPACK.dorgqr_(ref Int32, ref Int32, ref Int32, Double[], ref Int32, Double[], Double[], ref Int32, ref Int32)
nameWithType.vb: LAPACK.dorgqr_(ByRef Int32, ByRef Int32, ByRef Int32, Double(), ByRef Int32, Double(), Double(), ByRef Int32, ByRef Int32)
- uid: NumSharp.Core.LAPACK.dorgqr_*
name: dorgqr_
href: api/NumSharp.Core.LAPACK.html#NumSharp_Core_LAPACK_dorgqr__
commentId: Overload:NumSharp.Core.LAPACK.dorgqr_
fullName: NumSharp.Core.LAPACK.dorgqr_
nameWithType: LAPACK.dorgqr_
- uid: NumSharp.Core.Manipulation
name: NumSharp.Core.Manipulation
href: api/NumSharp.Core.Manipulation.html
commentId: N:NumSharp.Core.Manipulation
fullName: NumSharp.Core.Manipulation
nameWithType: NumSharp.Core.Manipulation
- uid: NumSharp.Core.Manipulation.NumPy
name: NumPy
href: api/NumSharp.Core.Manipulation.NumPy.html
commentId: T:NumSharp.Core.Manipulation.NumPy
fullName: NumSharp.Core.Manipulation.NumPy
nameWithType: NumPy
- uid: NumSharp.Core.Manipulation.NumPy.ravel(NumSharp.Core.matrix)
name: ravel(matrix)
href: api/NumSharp.Core.Manipulation.NumPy.html#NumSharp_Core_Manipulation_NumPy_ravel_NumSharp_Core_matrix_
commentId: M:NumSharp.Core.Manipulation.NumPy.ravel(NumSharp.Core.matrix)
fullName: NumSharp.Core.Manipulation.NumPy.ravel(NumSharp.Core.matrix)
nameWithType: NumPy.ravel(matrix)
- uid: NumSharp.Core.Manipulation.NumPy.ravel*
name: ravel
href: api/NumSharp.Core.Manipulation.NumPy.html#NumSharp_Core_Manipulation_NumPy_ravel_
commentId: Overload:NumSharp.Core.Manipulation.NumPy.ravel
isSpec: "True"
fullName: NumSharp.Core.Manipulation.NumPy.ravel
nameWithType: NumPy.ravel
- uid: NumSharp.Core.matrix
name: matrix
href: api/NumSharp.Core.matrix.html
commentId: T:NumSharp.Core.matrix
fullName: NumSharp.Core.matrix
nameWithType: matrix
- uid: NumSharp.Core.matrix.#ctor(NumSharp.Core.NDArray,System.Type)
name: matrix(NDArray, Type)
href: api/NumSharp.Core.matrix.html#NumSharp_Core_matrix__ctor_NumSharp_Core_NDArray_System_Type_
commentId: M:NumSharp.Core.matrix.#ctor(NumSharp.Core.NDArray,System.Type)
fullName: NumSharp.Core.matrix.matrix(NumSharp.Core.NDArray, System.Type)
nameWithType: matrix.matrix(NDArray, Type)
- uid: NumSharp.Core.matrix.#ctor(System.String,System.Type)
name: matrix(String, Type)
href: api/NumSharp.Core.matrix.html#NumSharp_Core_matrix__ctor_System_String_System_Type_
commentId: M:NumSharp.Core.matrix.#ctor(System.String,System.Type)
fullName: NumSharp.Core.matrix.matrix(System.String, System.Type)
nameWithType: matrix.matrix(String, Type)
- uid: NumSharp.Core.matrix.#ctor*
name: matrix
href: api/NumSharp.Core.matrix.html#NumSharp_Core_matrix__ctor_
commentId: Overload:NumSharp.Core.matrix.#ctor
isSpec: "True"
fullName: NumSharp.Core.matrix.matrix
nameWithType: matrix.matrix
- uid: NumSharp.Core.matrix.StringToDoubleMatrix(System.String[][])
name: StringToDoubleMatrix(String[][])
href: api/NumSharp.Core.matrix.html#NumSharp_Core_matrix_StringToDoubleMatrix_System_String_____
commentId: M:NumSharp.Core.matrix.StringToDoubleMatrix(System.String[][])
name.vb: StringToDoubleMatrix(String()())
fullName: NumSharp.Core.matrix.StringToDoubleMatrix(System.String[][])
fullName.vb: NumSharp.Core.matrix.StringToDoubleMatrix(System.String()())
nameWithType: matrix.StringToDoubleMatrix(String[][])
nameWithType.vb: matrix.StringToDoubleMatrix(String()())
- uid: NumSharp.Core.matrix.StringToDoubleMatrix*
name: StringToDoubleMatrix
href: api/NumSharp.Core.matrix.html#NumSharp_Core_matrix_StringToDoubleMatrix_
commentId: Overload:NumSharp.Core.matrix.StringToDoubleMatrix
isSpec: "True"
fullName: NumSharp.Core.matrix.StringToDoubleMatrix
nameWithType: matrix.StringToDoubleMatrix
- uid: NumSharp.Core.matrix.sum
name: sum()
href: api/NumSharp.Core.matrix.html#NumSharp_Core_matrix_sum
commentId: M:NumSharp.Core.matrix.sum
fullName: NumSharp.Core.matrix.sum()
nameWithType: matrix.sum()
- uid: NumSharp.Core.matrix.sum*
name: sum
href: api/NumSharp.Core.matrix.html#NumSharp_Core_matrix_sum_
commentId: Overload:NumSharp.Core.matrix.sum
isSpec: "True"
fullName: NumSharp.Core.matrix.sum
nameWithType: matrix.sum
- uid: NumSharp.Core.matrix.ToString
name: ToString()
href: api/NumSharp.Core.matrix.html#NumSharp_Core_matrix_ToString
commentId: M:NumSharp.Core.matrix.ToString
fullName: NumSharp.Core.matrix.ToString()
nameWithType: matrix.ToString()
- uid: NumSharp.Core.matrix.ToString*
name: ToString
href: api/NumSharp.Core.matrix.html#NumSharp_Core_matrix_ToString_
commentId: Overload:NumSharp.Core.matrix.ToString
isSpec: "True"
fullName: NumSharp.Core.matrix.ToString
nameWithType: matrix.ToString
- uid: NumSharp.Core.NDArray
name: NDArray
href: api/NumSharp.Core.NDArray.html
commentId: T:NumSharp.Core.NDArray
fullName: NumSharp.Core.NDArray
nameWithType: NDArray
- uid: NumSharp.Core.NDArray.#ctor
name: NDArray()
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray__ctor
commentId: M:NumSharp.Core.NDArray.#ctor
fullName: NumSharp.Core.NDArray.NDArray()
nameWithType: NDArray.NDArray()
- uid: NumSharp.Core.NDArray.#ctor(System.Array)
name: NDArray(Array)
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray__ctor_System_Array_
commentId: M:NumSharp.Core.NDArray.#ctor(System.Array)
fullName: NumSharp.Core.NDArray.NDArray(System.Array)
nameWithType: NDArray.NDArray(Array)
- uid: NumSharp.Core.NDArray.#ctor(System.Type)
name: NDArray(Type)
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray__ctor_System_Type_
commentId: M:NumSharp.Core.NDArray.#ctor(System.Type)
fullName: NumSharp.Core.NDArray.NDArray(System.Type)
nameWithType: NDArray.NDArray(Type)
- uid: NumSharp.Core.NDArray.#ctor(System.Type,NumSharp.Core.Interfaces.IShape)
name: NDArray(Type, IShape)
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray__ctor_System_Type_NumSharp_Core_Interfaces_IShape_
commentId: M:NumSharp.Core.NDArray.#ctor(System.Type,NumSharp.Core.Interfaces.IShape)
fullName: NumSharp.Core.NDArray.NDArray(System.Type, NumSharp.Core.Interfaces.IShape)
nameWithType: NDArray.NDArray(Type, IShape)
- uid: NumSharp.Core.NDArray.#ctor(System.Type,System.Int32[])
name: NDArray(Type, Int32[])
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray__ctor_System_Type_System_Int32___
commentId: M:NumSharp.Core.NDArray.#ctor(System.Type,System.Int32[])
name.vb: NDArray(Type, Int32())
fullName: NumSharp.Core.NDArray.NDArray(System.Type, System.Int32[])
fullName.vb: NumSharp.Core.NDArray.NDArray(System.Type, System.Int32())
nameWithType: NDArray.NDArray(Type, Int32[])
nameWithType.vb: NDArray.NDArray(Type, Int32())
- uid: NumSharp.Core.NDArray.#ctor*
name: NDArray
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray__ctor_
commentId: Overload:NumSharp.Core.NDArray.#ctor
isSpec: "True"
fullName: NumSharp.Core.NDArray.NDArray
nameWithType: NDArray.NDArray
- uid: NumSharp.Core.NDArray._ParseNumber(System.Object,System.Int32@,System.Int32@)
name: _ParseNumber(Object, ref Int32, ref Int32)
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray__ParseNumber_System_Object_System_Int32__System_Int32__
commentId: M:NumSharp.Core.NDArray._ParseNumber(System.Object,System.Int32@,System.Int32@)
name.vb: _ParseNumber(Object, ByRef Int32, ByRef Int32)
fullName: NumSharp.Core.NDArray._ParseNumber(System.Object, ref System.Int32, ref System.Int32)
fullName.vb: NumSharp.Core.NDArray._ParseNumber(System.Object, ByRef System.Int32, ByRef System.Int32)
nameWithType: NDArray._ParseNumber(Object, ref Int32, ref Int32)
nameWithType.vb: NDArray._ParseNumber(Object, ByRef Int32, ByRef Int32)
- uid: NumSharp.Core.NDArray._ParseNumber*
name: _ParseNumber
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray__ParseNumber_
commentId: Overload:NumSharp.Core.NDArray._ParseNumber
isSpec: "True"
fullName: NumSharp.Core.NDArray._ParseNumber
nameWithType: NDArray._ParseNumber
- uid: NumSharp.Core.NDArray._ToMatrixString*
name: _ToMatrixString
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray__ToMatrixString_
commentId: Overload:NumSharp.Core.NDArray._ToMatrixString
isSpec: "True"
fullName: NumSharp.Core.NDArray._ToMatrixString
nameWithType: NDArray._ToMatrixString
- uid: NumSharp.Core.NDArray._ToMatrixString``1
name: _ToMatrixString<T>()
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray__ToMatrixString__1
commentId: M:NumSharp.Core.NDArray._ToMatrixString``1
name.vb: _ToMatrixString(Of T)()
fullName: NumSharp.Core.NDArray._ToMatrixString<T>()
fullName.vb: NumSharp.Core.NDArray._ToMatrixString(Of T)()
nameWithType: NDArray._ToMatrixString<T>()
nameWithType.vb: NDArray._ToMatrixString(Of T)()
- uid: NumSharp.Core.NDArray._ToVectorString*
name: _ToVectorString
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray__ToVectorString_
commentId: Overload:NumSharp.Core.NDArray._ToVectorString
isSpec: "True"
fullName: NumSharp.Core.NDArray._ToVectorString
nameWithType: NDArray._ToVectorString
- uid: NumSharp.Core.NDArray._ToVectorString``1
name: _ToVectorString<T>()
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray__ToVectorString__1
commentId: M:NumSharp.Core.NDArray._ToVectorString``1
name.vb: _ToVectorString(Of T)()
fullName: NumSharp.Core.NDArray._ToVectorString<T>()
fullName.vb: NumSharp.Core.NDArray._ToVectorString(Of T)()
nameWithType: NDArray._ToVectorString<T>()
nameWithType.vb: NDArray._ToVectorString(Of T)()
- uid: NumSharp.Core.NDArray.absolute
name: absolute()
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray_absolute
commentId: M:NumSharp.Core.NDArray.absolute
fullName: NumSharp.Core.NDArray.absolute()
nameWithType: NDArray.absolute()
- uid: NumSharp.Core.NDArray.absolute*
name: absolute
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray_absolute_
commentId: Overload:NumSharp.Core.NDArray.absolute
isSpec: "True"
fullName: NumSharp.Core.NDArray.absolute
nameWithType: NDArray.absolute
- uid: NumSharp.Core.NDArray.amax(System.Nullable{System.Int32})
name: amax(Nullable<Int32>)
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray_amax_System_Nullable_System_Int32__
commentId: M:NumSharp.Core.NDArray.amax(System.Nullable{System.Int32})
name.vb: amax(Nullable(Of Int32))
fullName: NumSharp.Core.NDArray.amax(System.Nullable<System.Int32>)
fullName.vb: NumSharp.Core.NDArray.amax(System.Nullable(Of System.Int32))
nameWithType: NDArray.amax(Nullable<Int32>)
nameWithType.vb: NDArray.amax(Nullable(Of Int32))
- uid: NumSharp.Core.NDArray.amax*
name: amax
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray_amax_
commentId: Overload:NumSharp.Core.NDArray.amax
isSpec: "True"
fullName: NumSharp.Core.NDArray.amax
nameWithType: NDArray.amax
- uid: NumSharp.Core.NDArray.amin(System.Nullable{System.Int32})
name: amin(Nullable<Int32>)
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray_amin_System_Nullable_System_Int32__
commentId: M:NumSharp.Core.NDArray.amin(System.Nullable{System.Int32})
name.vb: amin(Nullable(Of Int32))
fullName: NumSharp.Core.NDArray.amin(System.Nullable<System.Int32>)
fullName.vb: NumSharp.Core.NDArray.amin(System.Nullable(Of System.Int32))
nameWithType: NDArray.amin(Nullable<Int32>)
nameWithType.vb: NDArray.amin(Nullable(Of Int32))
- uid: NumSharp.Core.NDArray.amin*
name: amin
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray_amin_
commentId: Overload:NumSharp.Core.NDArray.amin
isSpec: "True"
fullName: NumSharp.Core.NDArray.amin
nameWithType: NDArray.amin
- uid: NumSharp.Core.NDArray.arange(System.Int32,System.Int32,System.Int32)
name: arange(Int32, Int32, Int32)
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray_arange_System_Int32_System_Int32_System_Int32_
commentId: M:NumSharp.Core.NDArray.arange(System.Int32,System.Int32,System.Int32)
fullName: NumSharp.Core.NDArray.arange(System.Int32, System.Int32, System.Int32)
nameWithType: NDArray.arange(Int32, Int32, Int32)
- uid: NumSharp.Core.NDArray.arange*
name: arange
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray_arange_
commentId: Overload:NumSharp.Core.NDArray.arange
isSpec: "True"
fullName: NumSharp.Core.NDArray.arange
nameWithType: NDArray.arange
- uid: NumSharp.Core.NDArray.argmax
name: argmax()
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray_argmax
commentId: M:NumSharp.Core.NDArray.argmax
fullName: NumSharp.Core.NDArray.argmax()
nameWithType: NDArray.argmax()
- uid: NumSharp.Core.NDArray.argmax*
name: argmax
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray_argmax_
commentId: Overload:NumSharp.Core.NDArray.argmax
isSpec: "True"
fullName: NumSharp.Core.NDArray.argmax
nameWithType: NDArray.argmax
- uid: NumSharp.Core.NDArray.argmax``1
name: argmax<T>()
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray_argmax__1
commentId: M:NumSharp.Core.NDArray.argmax``1
name.vb: argmax(Of T)()
fullName: NumSharp.Core.NDArray.argmax<T>()
fullName.vb: NumSharp.Core.NDArray.argmax(Of T)()
nameWithType: NDArray.argmax<T>()
nameWithType.vb: NDArray.argmax(Of T)()
- uid: NumSharp.Core.NDArray.CalculateNegativeShape(System.Int32,System.Collections.Generic.IList{System.Int32},System.Int32[])
name: CalculateNegativeShape(Int32, IList<Int32>, Int32[])
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray_CalculateNegativeShape_System_Int32_System_Collections_Generic_IList_System_Int32__System_Int32___
commentId: M:NumSharp.Core.NDArray.CalculateNegativeShape(System.Int32,System.Collections.Generic.IList{System.Int32},System.Int32[])
name.vb: CalculateNegativeShape(Int32, IList(Of Int32), Int32())
fullName: NumSharp.Core.NDArray.CalculateNegativeShape(System.Int32, System.Collections.Generic.IList<System.Int32>, System.Int32[])
fullName.vb: NumSharp.Core.NDArray.CalculateNegativeShape(System.Int32, System.Collections.Generic.IList(Of System.Int32), System.Int32())
nameWithType: NDArray.CalculateNegativeShape(Int32, IList<Int32>, Int32[])
nameWithType.vb: NDArray.CalculateNegativeShape(Int32, IList(Of Int32), Int32())
- uid: NumSharp.Core.NDArray.CalculateNegativeShape*
name: CalculateNegativeShape
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray_CalculateNegativeShape_
commentId: Overload:NumSharp.Core.NDArray.CalculateNegativeShape
isSpec: "True"
fullName: NumSharp.Core.NDArray.CalculateNegativeShape
nameWithType: NDArray.CalculateNegativeShape
- uid: NumSharp.Core.NDArray.Clone
name: Clone()
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray_Clone
commentId: M:NumSharp.Core.NDArray.Clone
fullName: NumSharp.Core.NDArray.Clone()
nameWithType: NDArray.Clone()
- uid: NumSharp.Core.NDArray.Clone*
name: Clone
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray_Clone_
commentId: Overload:NumSharp.Core.NDArray.Clone
isSpec: "True"
fullName: NumSharp.Core.NDArray.Clone
nameWithType: NDArray.Clone
- uid: NumSharp.Core.NDArray.Convolve(NumSharp.Core.NDArray,System.String)
name: Convolve(NDArray, String)
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray_Convolve_NumSharp_Core_NDArray_System_String_
commentId: M:NumSharp.Core.NDArray.Convolve(NumSharp.Core.NDArray,System.String)
fullName: NumSharp.Core.NDArray.Convolve(NumSharp.Core.NDArray, System.String)
nameWithType: NDArray.Convolve(NDArray, String)
- uid: NumSharp.Core.NDArray.Convolve*
name: Convolve
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray_Convolve_
commentId: Overload:NumSharp.Core.NDArray.Convolve
isSpec: "True"
fullName: NumSharp.Core.NDArray.Convolve
nameWithType: NDArray.Convolve
- uid: NumSharp.Core.NDArray.copy(System.String)
name: copy(String)
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray_copy_System_String_
commentId: M:NumSharp.Core.NDArray.copy(System.String)
fullName: NumSharp.Core.NDArray.copy(System.String)
nameWithType: NDArray.copy(String)
- uid: NumSharp.Core.NDArray.copy*
name: copy
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray_copy_
commentId: Overload:NumSharp.Core.NDArray.copy
isSpec: "True"
fullName: NumSharp.Core.NDArray.copy
nameWithType: NDArray.copy
- uid: NumSharp.Core.NDArray.delete(System.Collections.IEnumerable)
name: delete(IEnumerable)
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray_delete_System_Collections_IEnumerable_
commentId: M:NumSharp.Core.NDArray.delete(System.Collections.IEnumerable)
fullName: NumSharp.Core.NDArray.delete(System.Collections.IEnumerable)
nameWithType: NDArray.delete(IEnumerable)
- uid: NumSharp.Core.NDArray.delete*
name: delete
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray_delete_
commentId: Overload:NumSharp.Core.NDArray.delete
isSpec: "True"
fullName: NumSharp.Core.NDArray.delete
nameWithType: NDArray.delete
- uid: NumSharp.Core.NDArray.dot(NumSharp.Core.NDArray)
name: dot(NDArray)
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray_dot_NumSharp_Core_NDArray_
commentId: M:NumSharp.Core.NDArray.dot(NumSharp.Core.NDArray)
fullName: NumSharp.Core.NDArray.dot(NumSharp.Core.NDArray)
nameWithType: NDArray.dot(NDArray)
- uid: NumSharp.Core.NDArray.dot*
name: dot
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray_dot_
commentId: Overload:NumSharp.Core.NDArray.dot
isSpec: "True"
fullName: NumSharp.Core.NDArray.dot
nameWithType: NDArray.dot
- uid: NumSharp.Core.NDArray.dtype
name: dtype
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray_dtype
commentId: P:NumSharp.Core.NDArray.dtype
fullName: NumSharp.Core.NDArray.dtype
nameWithType: NDArray.dtype
- uid: NumSharp.Core.NDArray.dtype*
name: dtype
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray_dtype_
commentId: Overload:NumSharp.Core.NDArray.dtype
isSpec: "True"
fullName: NumSharp.Core.NDArray.dtype
nameWithType: NDArray.dtype
- uid: NumSharp.Core.NDArray.Equals(System.Object)
name: Equals(Object)
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray_Equals_System_Object_
commentId: M:NumSharp.Core.NDArray.Equals(System.Object)
fullName: NumSharp.Core.NDArray.Equals(System.Object)
nameWithType: NDArray.Equals(Object)
- uid: NumSharp.Core.NDArray.Equals*
name: Equals
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray_Equals_
commentId: Overload:NumSharp.Core.NDArray.Equals
isSpec: "True"
fullName: NumSharp.Core.NDArray.Equals
nameWithType: NDArray.Equals
- uid: NumSharp.Core.NDArray.eye(System.Int32,System.Int32)
name: eye(Int32, Int32)
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray_eye_System_Int32_System_Int32_
commentId: M:NumSharp.Core.NDArray.eye(System.Int32,System.Int32)
fullName: NumSharp.Core.NDArray.eye(System.Int32, System.Int32)
nameWithType: NDArray.eye(Int32, Int32)
- uid: NumSharp.Core.NDArray.eye*
name: eye
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray_eye_
commentId: Overload:NumSharp.Core.NDArray.eye
isSpec: "True"
fullName: NumSharp.Core.NDArray.eye
nameWithType: NDArray.eye
- uid: NumSharp.Core.NDArray.FindNegativeIndex(System.Int32[])
name: FindNegativeIndex(Int32[])
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray_FindNegativeIndex_System_Int32___
commentId: M:NumSharp.Core.NDArray.FindNegativeIndex(System.Int32[])
name.vb: FindNegativeIndex(Int32())
fullName: NumSharp.Core.NDArray.FindNegativeIndex(System.Int32[])
fullName.vb: NumSharp.Core.NDArray.FindNegativeIndex(System.Int32())
nameWithType: NDArray.FindNegativeIndex(Int32[])
nameWithType.vb: NDArray.FindNegativeIndex(Int32())
- uid: NumSharp.Core.NDArray.FindNegativeIndex*
name: FindNegativeIndex
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray_FindNegativeIndex_
commentId: Overload:NumSharp.Core.NDArray.FindNegativeIndex
isSpec: "True"
fullName: NumSharp.Core.NDArray.FindNegativeIndex
nameWithType: NDArray.FindNegativeIndex
- uid: NumSharp.Core.NDArray.FromMultiDimArray(System.Array)
name: FromMultiDimArray(Array)
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray_FromMultiDimArray_System_Array_
commentId: M:NumSharp.Core.NDArray.FromMultiDimArray(System.Array)
fullName: NumSharp.Core.NDArray.FromMultiDimArray(System.Array)
nameWithType: NDArray.FromMultiDimArray(Array)
- uid: NumSharp.Core.NDArray.FromMultiDimArray*
name: FromMultiDimArray
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray_FromMultiDimArray_
commentId: Overload:NumSharp.Core.NDArray.FromMultiDimArray
isSpec: "True"
fullName: NumSharp.Core.NDArray.FromMultiDimArray
nameWithType: NDArray.FromMultiDimArray
- uid: NumSharp.Core.NDArray.GetHashCode
name: GetHashCode()
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray_GetHashCode
commentId: M:NumSharp.Core.NDArray.GetHashCode
fullName: NumSharp.Core.NDArray.GetHashCode()
nameWithType: NDArray.GetHashCode()
- uid: NumSharp.Core.NDArray.GetHashCode*
name: GetHashCode
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray_GetHashCode_
commentId: Overload:NumSharp.Core.NDArray.GetHashCode
isSpec: "True"
fullName: NumSharp.Core.NDArray.GetHashCode
nameWithType: NDArray.GetHashCode
- uid: NumSharp.Core.NDArray.hstack(NumSharp.Core.NDArray[])
name: hstack(NDArray[])
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray_hstack_NumSharp_Core_NDArray___
commentId: M:NumSharp.Core.NDArray.hstack(NumSharp.Core.NDArray[])
name.vb: hstack(NDArray())
fullName: NumSharp.Core.NDArray.hstack(NumSharp.Core.NDArray[])
fullName.vb: NumSharp.Core.NDArray.hstack(NumSharp.Core.NDArray())
nameWithType: NDArray.hstack(NDArray[])
nameWithType.vb: NDArray.hstack(NDArray())
- uid: NumSharp.Core.NDArray.hstack*
name: hstack
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray_hstack_
commentId: Overload:NumSharp.Core.NDArray.hstack
isSpec: "True"
fullName: NumSharp.Core.NDArray.hstack
nameWithType: NDArray.hstack
- uid: NumSharp.Core.NDArray.inv
name: inv()
href: api/NumSharp.Core.NDArray.html#NumSharp_Core_NDArray_inv
commentId: M:NumSharp.Core.NDArray.inv
fullName: NumSharp.Core.NDArray.inv()