LinearAlgebra.DenseColumnVector.FillValue C# (CSharp) Method

FillValue() public method

public FillValue ( float Value ) : void
Value float
return void
		public void FillValue(float Value)
		{
			for (int Idx=0;Idx<Dim;++Idx)
			{
				VectorValue[Idx] = Value;
			}
		}