NumericQ::set
Examples
Basic Examples (1)
An error occurs because the right side of this assignment is not True or False:
NumericQ[test] = Sqrt[2]These inputs set a numerical value for the test symbol and specify that the test symbol is a numeric quantity:
N[test] = Sqrt[2]NumericQ[test] = TrueThe test symbol now has a numerical value and will be treated as a numeric quantity:
N[test]NumericQ[Cos[test]]Remove the changes to the test symbol:
ClearAll[test];NumericQ[test]=.