Skip to content

Commit e6f2c3d

Browse files
committed
numpy.log
1 parent 3000d34 commit e6f2c3d

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Text;
5+
using System.Numerics;
6+
using NumSharp.Core.Extensions;
7+
8+
namespace NumSharp.Core
9+
{
10+
public partial class NumPy
11+
{
12+
public NDArray log(NDArray nd)
13+
{
14+
return nd.log();
15+
}
16+
}
17+
}

0 commit comments

Comments
 (0)