예제 #1
0
        public HyndmanYanQuantileEstimator(HyndmanYanType type)
        {
            if (!Enum.IsDefined(typeof(HyndmanYanType), type))
            {
                throw new ArgumentOutOfRangeException(nameof(type), type, "Unknown type");
            }

            this.type = type;
        }
예제 #2
0
 public HyTestDataCase1(HyndmanYanType type, [NotNull] double[] expected) : base(type, expected)
 {
 }
예제 #3
0
 protected HyTestData(HyndmanYanType type, [NotNull] double[] expected)
 {
     Type     = type;
     Expected = expected;
 }