using System;
using System.Collections.Generic;
using System.Text;
namespace NumSharp.UnitTest
{
public class DataSample
{
///
/// shape(2, 3, 2, 2)
///
public static int[,,,] Int32D2x3x2x2
=> new int[,,,] {{{{1, 3}, {2, 2}}, {{1, 2}, {3, 3}}, {{3, 2}, {2, 1}},}, {{{2, 1}, {2, 3}}, {{3, 2}, {3, 1}}, {{3, 2}, {1, 2}},}};
///
/// shape(4, 3, 2)
///
public static int[,,] Int32D4x3x2
=> new int[,,] {{{1, 3}, {2, 1}}, {{2, 1}, {2, 3}}, {{1, 1}, {2, 2}}, {{3, 1}, {1, 2}}};
///
/// shape(4, 3)
///
public static int[,] Int32D4x3
=> new int[,] {{3, 2, 1}, {1, 2, 1}, {1, 2, 3}, {2, 3, 1}};
///
/// shape(12)
///
///
public static int[] Int32D12
=> new int[] {1, 2, 1, 3, 2, 1, 1, 2, 3, 2, 3, 2};
///
/// shape(2, 2)
///
///
public static int[,] Int32D2x2
=> new int[,] {{1, 2}, {2, 3}};
}
}