コード例 #1
0
ファイル: NDarray.cs プロジェクト: aidevnn/AutoGradMLP
 public void ChangeShape(int[] shape)
 {
     Shape   = shape;
     Strides = Strides.ToArray();
     Indices = new int[Shape.Length];
 }