Artificial Intelligence
Artificial Intelligence
Information

KnowledgeMath.Arg1 property


      Gets or sets the first argument of the mathematical function.


Namespace : ielib
Assembly : ielib.dll

public object Arg1 { set; get; }

Property value

Type : System.object

Represents the first argument to the function.


Example Calculate the power to squared cosine of 50.


KnowledgeMath Pow2 = new KnowledgeMath("Pow");
KnowledgeMath cosine = new KnowledgeMath("Cos");

Cosine.Arg1 = 50;
Pow2.Arg1 = Cosine;
Pow2.Arg2 = 2;