We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90bf977 commit 8a141f6Copy full SHA for 8a141f6
README.md
@@ -40,9 +40,9 @@ The NumPy class is a high-level abstraction of NDArray that allows NumSharp to b
40
41
### How to use
42
```cs
43
-// init NumPy instance which pesists integer data type
44
-var np = new NumPy();
45
-
+using np = NumSharp.Core.NumPy;
+```
+```cs
46
// create a vector
47
var nd = np.arange(12)
48
src/NumSharp.Core/NumPy.cs
@@ -15,6 +15,7 @@ public static partial class NumPy
15
public static Type int64 => typeof(Int64);
16
public static Type float32 => typeof(float);
17
public static Type float64 => typeof(double);
18
+ public static Type chars => typeof(string);
19
20
public static NumPyRandom random => new NumPyRandom();
21
}
0 commit comments