Skip to content

Commit 55a487c

Browse files
committed
updated README
1 parent cb41283 commit 55a487c

2 files changed

Lines changed: 3 additions & 0 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ The NumPy class is a high-level abstraction of NDArray that allows NumSharp to b
2424
* array
2525
* hstack
2626
* linspace
27+
* power
2728
* random
2829
* normal
2930
* randint

test/NumSharp.UnitTest/NdArrayRandom.Test.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,14 @@ namespace NumSharp.UnitTest
1010
public class NDArrayRandomTest
1111
{
1212
NumPy<double> np = new NumPy<double>();
13+
1314
[TestMethod]
1415
public void randn()
1516
{
1617
var n = np.random.randn(5, 2);
1718
}
1819

20+
[TestMethod]
1921
public void normal()
2022
{
2123
var n = np.random.normal(0, 1, 5);

0 commit comments

Comments
 (0)