///
        /// <param name="knots">  the knots </param>
        /// <param name="coefMatrix">  the coefMatrix </param>
        /// <param name="order">  the order </param>
        /// <param name="dim">  the dim </param>
        /// <param name="coeffSense"> the sensitivity of the coefficients to the nodes (y-values) </param>
//JAVA TO C# CONVERTER WARNING: 'final' parameters are not available in .NET:
//ORIGINAL LINE: public PiecewisePolynomialResultsWithSensitivity(com.opengamma.strata.collect.array.DoubleArray knots, com.opengamma.strata.collect.array.DoubleMatrix coefMatrix, int order, int dim, final com.opengamma.strata.collect.array.DoubleMatrix[] coeffSense)
        public PiecewisePolynomialResultsWithSensitivity(DoubleArray knots, DoubleMatrix coefMatrix, int order, int dim, DoubleMatrix[] coeffSense) : base(knots, coefMatrix, order, dim)
        {
            if (dim != 1)
            {
                throw new System.NotSupportedException();
            }
            ArgChecker.noNulls(coeffSense, "null coeffSense");     // coefficient
            _coeffSense = coeffSense;
        }