wrong ndim for single value constructor when numpy type provided
Happypig375 opened this issue · 0 comments
Happypig375 commented
import numpy as np
print(np.array(2).ndim)
print(np.array(2, np.int32).ndim)0
0
System.Console.WriteLine(np.array(2).ndim);
System.Console.WriteLine(np.array(2, np.Int32).ndim);0
1