/// <summary> /// Returns a <see cref="System.String"/> that represents this instance. /// </summary> /// /// <returns> /// A <see cref="System.String"/> that represents this instance. /// </returns> /// public string ToString(string format) { return(String.Format("T(x; df = {0}, μ = {1})", DegreesOfFreedom.ToString(format), Noncentrality.ToString(format))); }
/// <summary> /// Returns a <see cref="System.String"/> that represents this instance. /// </summary> /// /// <returns> /// A <see cref="System.String"/> that represents this instance. /// </returns> /// public string ToString(string format, IFormatProvider formatProvider) { return(String.Format(formatProvider, "T(x; df = {0}, μ = {1})", DegreesOfFreedom.ToString(format, formatProvider), Noncentrality.ToString(format, formatProvider))); }