TextPlotXY_StdUncT Method
            Text XY Plot Standard Uncertainty
            
Namespace: Metas.UncLib.Core.MiscAssembly: Metas.UncLib.Core (in Metas.UncLib.Core.dll) Version: 2.9.9435.16862
public static string PlotXY_StdUnc<T>(
	double[] x,
	T[] y,
	int width = 80,
	int height = 24,
	char fillchar = '*'
)
where T : Object, IRealNumber<T>
Public Shared Function PlotXY_StdUnc(Of T As {Object, IRealNumber(Of T)}) ( 
	x As Double(),
	y As T(),
	Optional width As Integer = 80,
	Optional height As Integer = 24,
	Optional fillchar As Char = "*"C
) As String
public:
generic<typename T>
where T : Object, IRealNumber<T>
static String^ PlotXY_StdUnc(
	array<double>^ x, 
	array<T>^ y, 
	int width = 80, 
	int height = 24, 
	wchar_t fillchar = L'*'
)
static member PlotXY_StdUnc : 
        x : float[] * 
        y : 'T[] * 
        ?width : int * 
        ?height : int * 
        ?fillchar : char 
(* Defaults:
        let _width = defaultArg width 80
        let _height = defaultArg height 24
        let _fillchar = defaultArg fillchar '*'
*)
-> string  when 'T : Object and IRealNumber<'T>
- x  Double
 - X
 - y  T
 - Y
 - width  Int32  (Optional)
 - Width
 - height  Int32  (Optional)
 - Height
 - fillchar  Char  (Optional)
 - Fill Character
 
- T
 - Real Number Type
 
String