forked from SciSharp/NumSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNumSharp.Core.Interfaces.IStorage.html
More file actions
968 lines (953 loc) · 44.3 KB
/
NumSharp.Core.Interfaces.IStorage.html
File metadata and controls
968 lines (953 loc) · 44.3 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
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Interface IStorage
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Interface IStorage
">
<meta name="generator" content="docfx 2.40.2.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="NumSharp.Core.Interfaces.IStorage">
<h1 id="NumSharp_Core_Interfaces_IStorage" data-uid="NumSharp.Core.Interfaces.IStorage" class="text-break">Interface IStorage
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>
<div class="inheritedMembers">
<h5>Inherited Members</h5>
<div>
<span class="xref">System.ICloneable.Clone()</span>
</div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="NumSharp.Core.Interfaces.html">NumSharp.Core.Interfaces</a></h6>
<h6><strong>Assembly</strong>: NumSharp.Core.dll</h6>
<h5 id="NumSharp_Core_Interfaces_IStorage_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public interface IStorage : ICloneable</code></pre>
</div>
<h3 id="properties">Properties
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/dotChris90/NumSharp/new/master/apiSpec/new?filename=NumSharp_Core_Interfaces_IStorage_DType.md&value=---%0Auid%3A%20NumSharp.Core.Interfaces.IStorage.DType%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/dotChris90/NumSharp/blob/master/src/NumSharp.Core/Interfaces/IStorage.cs/#L27">View Source</a>
</span>
<a id="NumSharp_Core_Interfaces_IStorage_DType_" data-uid="NumSharp.Core.Interfaces.IStorage.DType*"></a>
<h4 id="NumSharp_Core_Interfaces_IStorage_DType" data-uid="NumSharp.Core.Interfaces.IStorage.DType">DType</h4>
<div class="markdown level1 summary"><p>Data Type of stored elements</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">Type DType { get; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Type</span></td>
<td><p>numpys equal dtype</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/dotChris90/NumSharp/new/master/apiSpec/new?filename=NumSharp_Core_Interfaces_IStorage_Shape.md&value=---%0Auid%3A%20NumSharp.Core.Interfaces.IStorage.Shape%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/dotChris90/NumSharp/blob/master/src/NumSharp.Core/Interfaces/IStorage.cs/#L32">View Source</a>
</span>
<a id="NumSharp_Core_Interfaces_IStorage_Shape_" data-uid="NumSharp.Core.Interfaces.IStorage.Shape*"></a>
<h4 id="NumSharp_Core_Interfaces_IStorage_Shape" data-uid="NumSharp.Core.Interfaces.IStorage.Shape">Shape</h4>
<div class="markdown level1 summary"><p>storage shape for outside representation</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">IShape Shape { get; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="NumSharp.Core.Interfaces.IShape.html">IShape</a></td>
<td><p>numpys equal shape</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/dotChris90/NumSharp/new/master/apiSpec/new?filename=NumSharp_Core_Interfaces_IStorage_TensorLayout.md&value=---%0Auid%3A%20NumSharp.Core.Interfaces.IStorage.TensorLayout%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/dotChris90/NumSharp/blob/master/src/NumSharp.Core/Interfaces/IStorage.cs/#L37">View Source</a>
</span>
<a id="NumSharp_Core_Interfaces_IStorage_TensorLayout_" data-uid="NumSharp.Core.Interfaces.IStorage.TensorLayout*"></a>
<h4 id="NumSharp_Core_Interfaces_IStorage_TensorLayout" data-uid="NumSharp.Core.Interfaces.IStorage.TensorLayout">TensorLayout</h4>
<div class="markdown level1 summary"><p>column wise or row wise order</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">int TensorLayout { get; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Int32</span></td>
<td><p>0 row wise, 1 column wise</p>
</td>
</tr>
</tbody>
</table>
<h3 id="methods">Methods
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/dotChris90/NumSharp/new/master/apiSpec/new?filename=NumSharp_Core_Interfaces_IStorage_Allocate_System_Array_System_Int32_.md&value=---%0Auid%3A%20NumSharp.Core.Interfaces.IStorage.Allocate(System.Array%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/dotChris90/NumSharp/blob/master/src/NumSharp.Core/Interfaces/IStorage.cs/#L50">View Source</a>
</span>
<a id="NumSharp_Core_Interfaces_IStorage_Allocate_" data-uid="NumSharp.Core.Interfaces.IStorage.Allocate*"></a>
<h4 id="NumSharp_Core_Interfaces_IStorage_Allocate_System_Array_System_Int32_" data-uid="NumSharp.Core.Interfaces.IStorage.Allocate(System.Array,System.Int32)">Allocate(Array, Int32)</h4>
<div class="markdown level1 summary"><p>Allocate memory by Array and tensororder and deduce shape and dtype (default column wise)</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">void Allocate(Array values, int tensorOrder = 1)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Array</span></td>
<td><span class="parametername">values</span></td>
<td><p>elements to store</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Int32</span></td>
<td><span class="parametername">tensorOrder</span></td>
<td><p>row or column wise</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/dotChris90/NumSharp/new/master/apiSpec/new?filename=NumSharp_Core_Interfaces_IStorage_Allocate_System_Type_NumSharp_Core_Interfaces_IShape_System_Int32_.md&value=---%0Auid%3A%20NumSharp.Core.Interfaces.IStorage.Allocate(System.Type%2CNumSharp.Core.Interfaces.IShape%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/dotChris90/NumSharp/blob/master/src/NumSharp.Core/Interfaces/IStorage.cs/#L44">View Source</a>
</span>
<a id="NumSharp_Core_Interfaces_IStorage_Allocate_" data-uid="NumSharp.Core.Interfaces.IStorage.Allocate*"></a>
<h4 id="NumSharp_Core_Interfaces_IStorage_Allocate_System_Type_NumSharp_Core_Interfaces_IShape_System_Int32_" data-uid="NumSharp.Core.Interfaces.IStorage.Allocate(System.Type,NumSharp.Core.Interfaces.IShape,System.Int32)">Allocate(Type, IShape, Int32)</h4>
<div class="markdown level1 summary"><p>Allocate memory by dtype, shape, tensororder (default column wise)</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">void Allocate(Type dtype, IShape shape, int tensorOrder = 1)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">dtype</span></td>
<td><p>storage data type</p>
</td>
</tr>
<tr>
<td><a class="xref" href="NumSharp.Core.Interfaces.IShape.html">IShape</a></td>
<td><span class="parametername">shape</span></td>
<td><p>storage data shape</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Int32</span></td>
<td><span class="parametername">tensorOrder</span></td>
<td><p>row or column wise</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/dotChris90/NumSharp/new/master/apiSpec/new?filename=NumSharp_Core_Interfaces_IStorage_ChangeDataType_System_Type_.md&value=---%0Auid%3A%20NumSharp.Core.Interfaces.IStorage.ChangeDataType(System.Type)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/dotChris90/NumSharp/blob/master/src/NumSharp.Core/Interfaces/IStorage.cs/#L132">View Source</a>
</span>
<a id="NumSharp_Core_Interfaces_IStorage_ChangeDataType_" data-uid="NumSharp.Core.Interfaces.IStorage.ChangeDataType*"></a>
<h4 id="NumSharp_Core_Interfaces_IStorage_ChangeDataType_System_Type_" data-uid="NumSharp.Core.Interfaces.IStorage.ChangeDataType(System.Type)">ChangeDataType(Type)</h4>
<div class="markdown level1 summary"><p>Change dtype of elements</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">void ChangeDataType(Type dtype)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">dtype</span></td>
<td><p>new storage data type</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/dotChris90/NumSharp/new/master/apiSpec/new?filename=NumSharp_Core_Interfaces_IStorage_ChangeTensorLayout_System_Int32_.md&value=---%0Auid%3A%20NumSharp.Core.Interfaces.IStorage.ChangeTensorLayout(System.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/dotChris90/NumSharp/blob/master/src/NumSharp.Core/Interfaces/IStorage.cs/#L138">View Source</a>
</span>
<a id="NumSharp_Core_Interfaces_IStorage_ChangeTensorLayout_" data-uid="NumSharp.Core.Interfaces.IStorage.ChangeTensorLayout*"></a>
<h4 id="NumSharp_Core_Interfaces_IStorage_ChangeTensorLayout_System_Int32_" data-uid="NumSharp.Core.Interfaces.IStorage.ChangeTensorLayout(System.Int32)">ChangeTensorLayout(Int32)</h4>
<div class="markdown level1 summary"><p>Cange layout to 0 row wise or 1 colum wise</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">void ChangeTensorLayout(int order)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Int32</span></td>
<td><span class="parametername">order</span></td>
<td><p>0 or 1</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/dotChris90/NumSharp/new/master/apiSpec/new?filename=NumSharp_Core_Interfaces_IStorage_CloneData.md&value=---%0Auid%3A%20NumSharp.Core.Interfaces.IStorage.CloneData%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/dotChris90/NumSharp/blob/master/src/NumSharp.Core/Interfaces/IStorage.cs/#L72">View Source</a>
</span>
<a id="NumSharp_Core_Interfaces_IStorage_CloneData_" data-uid="NumSharp.Core.Interfaces.IStorage.CloneData*"></a>
<h4 id="NumSharp_Core_Interfaces_IStorage_CloneData" data-uid="NumSharp.Core.Interfaces.IStorage.CloneData">CloneData()</h4>
<div class="markdown level1 summary"><p>Clone internal storage and get reference to it</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">Array CloneData()</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Array</span></td>
<td><p>reference to cloned storage as System.Array</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/dotChris90/NumSharp/new/master/apiSpec/new?filename=NumSharp_Core_Interfaces_IStorage_CloneData_System_Type_.md&value=---%0Auid%3A%20NumSharp.Core.Interfaces.IStorage.CloneData(System.Type)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/dotChris90/NumSharp/blob/master/src/NumSharp.Core/Interfaces/IStorage.cs/#L84">View Source</a>
</span>
<a id="NumSharp_Core_Interfaces_IStorage_CloneData_" data-uid="NumSharp.Core.Interfaces.IStorage.CloneData*"></a>
<h4 id="NumSharp_Core_Interfaces_IStorage_CloneData_System_Type_" data-uid="NumSharp.Core.Interfaces.IStorage.CloneData(System.Type)">CloneData(Type)</h4>
<div class="markdown level1 summary"><p>Clone internal storage and cast elements to new dtype</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">Array CloneData(Type dtype)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">dtype</span></td>
<td><p>cloned storage data type</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Array</span></td>
<td><p>reference to cloned storage as System.Array</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/dotChris90/NumSharp/new/master/apiSpec/new?filename=NumSharp_Core_Interfaces_IStorage_CloneData__1.md&value=---%0Auid%3A%20NumSharp.Core.Interfaces.IStorage.CloneData%60%601%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/dotChris90/NumSharp/blob/master/src/NumSharp.Core/Interfaces/IStorage.cs/#L96">View Source</a>
</span>
<a id="NumSharp_Core_Interfaces_IStorage_CloneData_" data-uid="NumSharp.Core.Interfaces.IStorage.CloneData*"></a>
<h4 id="NumSharp_Core_Interfaces_IStorage_CloneData__1" data-uid="NumSharp.Core.Interfaces.IStorage.CloneData``1">CloneData<T>()</h4>
<div class="markdown level1 summary"><p>Get all elements from cloned storage as T[] and cast dtype</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">T[] CloneData<T>()</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>T[]</td>
<td><p>reference to cloned storage as T[]</p>
</td>
</tr>
</tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">T</span></td>
<td><p>cloned storgae dtype</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/dotChris90/NumSharp/new/master/apiSpec/new?filename=NumSharp_Core_Interfaces_IStorage_GetColumWiseStorage.md&value=---%0Auid%3A%20NumSharp.Core.Interfaces.IStorage.GetColumWiseStorage%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/dotChris90/NumSharp/blob/master/src/NumSharp.Core/Interfaces/IStorage.cs/#L56">View Source</a>
</span>
<a id="NumSharp_Core_Interfaces_IStorage_GetColumWiseStorage_" data-uid="NumSharp.Core.Interfaces.IStorage.GetColumWiseStorage*"></a>
<h4 id="NumSharp_Core_Interfaces_IStorage_GetColumWiseStorage" data-uid="NumSharp.Core.Interfaces.IStorage.GetColumWiseStorage">GetColumWiseStorage()</h4>
<div class="markdown level1 summary"><p>Get Back Storage with Columnwise tensor Layout
By this method the layout is changed if layout is not columnwise</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">IStorage GetColumWiseStorage()</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="NumSharp.Core.Interfaces.IStorage.html">IStorage</a></td>
<td><p>reference to storage (transformed or not)</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/dotChris90/NumSharp/new/master/apiSpec/new?filename=NumSharp_Core_Interfaces_IStorage_GetData.md&value=---%0Auid%3A%20NumSharp.Core.Interfaces.IStorage.GetData%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/dotChris90/NumSharp/blob/master/src/NumSharp.Core/Interfaces/IStorage.cs/#L67">View Source</a>
</span>
<a id="NumSharp_Core_Interfaces_IStorage_GetData_" data-uid="NumSharp.Core.Interfaces.IStorage.GetData*"></a>
<h4 id="NumSharp_Core_Interfaces_IStorage_GetData" data-uid="NumSharp.Core.Interfaces.IStorage.GetData">GetData()</h4>
<div class="markdown level1 summary"><p>Get reference to internal data storage</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">Array GetData()</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Array</span></td>
<td><p>reference to internal storage as System.Array</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/dotChris90/NumSharp/new/master/apiSpec/new?filename=NumSharp_Core_Interfaces_IStorage_GetData_System_Int32___.md&value=---%0Auid%3A%20NumSharp.Core.Interfaces.IStorage.GetData(System.Int32%5B%5D)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/dotChris90/NumSharp/blob/master/src/NumSharp.Core/Interfaces/IStorage.cs/#L102">View Source</a>
</span>
<a id="NumSharp_Core_Interfaces_IStorage_GetData_" data-uid="NumSharp.Core.Interfaces.IStorage.GetData*"></a>
<h4 id="NumSharp_Core_Interfaces_IStorage_GetData_System_Int32___" data-uid="NumSharp.Core.Interfaces.IStorage.GetData(System.Int32[])">GetData(Int32[])</h4>
<div class="markdown level1 summary"><p>Get single value from internal storage and do not cast dtype</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">object GetData(params int[] indexes)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Int32</span>[]</td>
<td><span class="parametername">indexes</span></td>
<td><p>indexes</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><p>element from internal storage</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/dotChris90/NumSharp/new/master/apiSpec/new?filename=NumSharp_Core_Interfaces_IStorage_GetData_System_Type_.md&value=---%0Auid%3A%20NumSharp.Core.Interfaces.IStorage.GetData(System.Type)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/dotChris90/NumSharp/blob/master/src/NumSharp.Core/Interfaces/IStorage.cs/#L78">View Source</a>
</span>
<a id="NumSharp_Core_Interfaces_IStorage_GetData_" data-uid="NumSharp.Core.Interfaces.IStorage.GetData*"></a>
<h4 id="NumSharp_Core_Interfaces_IStorage_GetData_System_Type_" data-uid="NumSharp.Core.Interfaces.IStorage.GetData(System.Type)">GetData(Type)</h4>
<div class="markdown level1 summary"><p>Get reference to internal data storage and cast elements to new dtype</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">Array GetData(Type dtype)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">dtype</span></td>
<td><p>new storage data type</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Array</span></td>
<td><p>reference to internal (casted) storage as System.Array</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/dotChris90/NumSharp/new/master/apiSpec/new?filename=NumSharp_Core_Interfaces_IStorage_GetData__1.md&value=---%0Auid%3A%20NumSharp.Core.Interfaces.IStorage.GetData%60%601%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/dotChris90/NumSharp/blob/master/src/NumSharp.Core/Interfaces/IStorage.cs/#L90">View Source</a>
</span>
<a id="NumSharp_Core_Interfaces_IStorage_GetData_" data-uid="NumSharp.Core.Interfaces.IStorage.GetData*"></a>
<h4 id="NumSharp_Core_Interfaces_IStorage_GetData__1" data-uid="NumSharp.Core.Interfaces.IStorage.GetData``1">GetData<T>()</h4>
<div class="markdown level1 summary"><p>Get reference to internal data storage and cast elements to new dtype</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">T[] GetData<T>()</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>T[]</td>
<td><p>reference to internal (casted) storage as T[]</p>
</td>
</tr>
</tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">T</span></td>
<td><p>new storage data type</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/dotChris90/NumSharp/new/master/apiSpec/new?filename=NumSharp_Core_Interfaces_IStorage_GetData__1_System_Int32___.md&value=---%0Auid%3A%20NumSharp.Core.Interfaces.IStorage.GetData%60%601(System.Int32%5B%5D)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/dotChris90/NumSharp/blob/master/src/NumSharp.Core/Interfaces/IStorage.cs/#L109">View Source</a>
</span>
<a id="NumSharp_Core_Interfaces_IStorage_GetData_" data-uid="NumSharp.Core.Interfaces.IStorage.GetData*"></a>
<h4 id="NumSharp_Core_Interfaces_IStorage_GetData__1_System_Int32___" data-uid="NumSharp.Core.Interfaces.IStorage.GetData``1(System.Int32[])">GetData<T>(Int32[])</h4>
<div class="markdown level1 summary"><p>Get single value from internal storage as type T and cast dtype to T</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">T GetData<T>(params int[] indexes)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Int32</span>[]</td>
<td><span class="parametername">indexes</span></td>
<td><p>indexes</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">T</span></td>
<td><p>element from internal storage</p>
</td>
</tr>
</tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">T</span></td>
<td><p>new storage data type</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/dotChris90/NumSharp/new/master/apiSpec/new?filename=NumSharp_Core_Interfaces_IStorage_GetRowWiseStorage.md&value=---%0Auid%3A%20NumSharp.Core.Interfaces.IStorage.GetRowWiseStorage%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/dotChris90/NumSharp/blob/master/src/NumSharp.Core/Interfaces/IStorage.cs/#L62">View Source</a>
</span>
<a id="NumSharp_Core_Interfaces_IStorage_GetRowWiseStorage_" data-uid="NumSharp.Core.Interfaces.IStorage.GetRowWiseStorage*"></a>
<h4 id="NumSharp_Core_Interfaces_IStorage_GetRowWiseStorage" data-uid="NumSharp.Core.Interfaces.IStorage.GetRowWiseStorage">GetRowWiseStorage()</h4>
<div class="markdown level1 summary"><p>Get Back Storage with row wise tensor Layout
By this method the layout is changed if layout is not row wise</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">IStorage GetRowWiseStorage()</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="NumSharp.Core.Interfaces.IStorage.html">IStorage</a></td>
<td><p>reference to storage (transformed or not)</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/dotChris90/NumSharp/new/master/apiSpec/new?filename=NumSharp_Core_Interfaces_IStorage_Reshape_System_Int32___.md&value=---%0Auid%3A%20NumSharp.Core.Interfaces.IStorage.Reshape(System.Int32%5B%5D)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/dotChris90/NumSharp/blob/master/src/NumSharp.Core/Interfaces/IStorage.cs/#L139">View Source</a>
</span>
<a id="NumSharp_Core_Interfaces_IStorage_Reshape_" data-uid="NumSharp.Core.Interfaces.IStorage.Reshape*"></a>
<h4 id="NumSharp_Core_Interfaces_IStorage_Reshape_System_Int32___" data-uid="NumSharp.Core.Interfaces.IStorage.Reshape(System.Int32[])">Reshape(Int32[])</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">void Reshape(params int[] dimensions)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Int32</span>[]</td>
<td><span class="parametername">dimensions</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/dotChris90/NumSharp/new/master/apiSpec/new?filename=NumSharp_Core_Interfaces_IStorage_SetData_System_Array_.md&value=---%0Auid%3A%20NumSharp.Core.Interfaces.IStorage.SetData(System.Array)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/dotChris90/NumSharp/blob/master/src/NumSharp.Core/Interfaces/IStorage.cs/#L114">View Source</a>
</span>
<a id="NumSharp_Core_Interfaces_IStorage_SetData_" data-uid="NumSharp.Core.Interfaces.IStorage.SetData*"></a>
<h4 id="NumSharp_Core_Interfaces_IStorage_SetData_System_Array_" data-uid="NumSharp.Core.Interfaces.IStorage.SetData(System.Array)">SetData(Array)</h4>
<div class="markdown level1 summary"><p>Set an array to internal storage and keep dtype</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">void SetData(Array values)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Array</span></td>
<td><span class="parametername">values</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/dotChris90/NumSharp/new/master/apiSpec/new?filename=NumSharp_Core_Interfaces_IStorage_SetData_System_Array_System_Type_.md&value=---%0Auid%3A%20NumSharp.Core.Interfaces.IStorage.SetData(System.Array%2CSystem.Type)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/dotChris90/NumSharp/blob/master/src/NumSharp.Core/Interfaces/IStorage.cs/#L126">View Source</a>
</span>
<a id="NumSharp_Core_Interfaces_IStorage_SetData_" data-uid="NumSharp.Core.Interfaces.IStorage.SetData*"></a>
<h4 id="NumSharp_Core_Interfaces_IStorage_SetData_System_Array_System_Type_" data-uid="NumSharp.Core.Interfaces.IStorage.SetData(System.Array,System.Type)">SetData(Array, Type)</h4>
<div class="markdown level1 summary"><p>Set an Array to internal storage, cast it to new dtype and change dtype</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">void SetData(Array values, Type dtype)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Array</span></td>
<td><span class="parametername">values</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">dtype</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/dotChris90/NumSharp/new/master/apiSpec/new?filename=NumSharp_Core_Interfaces_IStorage_SetData_System_Object_System_Int32___.md&value=---%0Auid%3A%20NumSharp.Core.Interfaces.IStorage.SetData(System.Object%2CSystem.Int32%5B%5D)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/dotChris90/NumSharp/blob/master/src/NumSharp.Core/Interfaces/IStorage.cs/#L120">View Source</a>
</span>
<a id="NumSharp_Core_Interfaces_IStorage_SetData_" data-uid="NumSharp.Core.Interfaces.IStorage.SetData*"></a>
<h4 id="NumSharp_Core_Interfaces_IStorage_SetData_System_Object_System_Int32___" data-uid="NumSharp.Core.Interfaces.IStorage.SetData(System.Object,System.Int32[])">SetData(Object, Int32[])</h4>
<div class="markdown level1 summary"><p>Set 1 single value to internal storage and keep dtype</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">void SetData(object value, params int[] indexes)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><span class="parametername">value</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Int32</span>[]</td>
<td><span class="parametername">indexes</span></td>
<td></td>
</tr>
</tbody>
</table>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/dotChris90/NumSharp/new/master/apiSpec/new?filename=NumSharp_Core_Interfaces_IStorage.md&value=---%0Auid%3A%20NumSharp.Core.Interfaces.IStorage%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="https://github.com/dotChris90/NumSharp/blob/master/src/NumSharp.Core/Interfaces/IStorage.cs/#L21" class="contribution-link">View Source</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<!-- <p><a class="back-to-top" href="#top">Back to top</a><p> -->
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>