AbsoluteOptions::optnf
SetOptions::optnf
Options::optnf
AbsoluteOptions::optnf SetOptions::optnf Options::optnf
Details
-
- This message is generated by an attempt to set or inspect an option that is not one of the known options of the indicated symbol.
- Options can be added to a symbol sym by making an assignment to Options[sym].
- Off[message] switches off the message; On[message] switches it on. For example: Off[AbsoluteOptions::optnf].
Examples
Basic Examples (2)
This input generates an error because Modulus is not an option of Integrate:
Options[Integrate, Modulus]This shows a correct use of the Options function:
Options[Integrate, GenerateConditions]A similar error will result from an attempt to set an unknown option:
SetOptions[Integrate, Modulus -> 0]