AIMA.Core.Learning.Framework.NumericAttributeSpecification.createAttribute C# (CSharp) Method

createAttribute() public method

public createAttribute ( String rawValue ) : LearningAttribute
rawValue String
return LearningAttribute
        public LearningAttribute createAttribute(String rawValue)
        {
            return new NumericAttribute(Double.Parse(rawValue), this);
        }
    }