I want to find the (NumericFunction) built-in functions that take exactly one document.
Select[Names["*"], MemberQ[Attributes[#], NumericFunction] &]
returns a list of numeric functions but among them there are both functions like
Sinand QHypergeometricPFQ.
How can I be more specific? Thanks.
– Kirill Belov Mar 02 '17 at 11:02Select[Select[Names["*"], MemberQ[Attributes[#], NumericFunction] &], MatchQ[SyntaxInformation[Symbol[#]], {_ -> {_}}] &]SyntaxInformationdon't very fit such case.How about those function with two argument? – yode Mar 02 '17 at 11:09MatchQ[SyntaxInformation[func], pattern]– Kirill Belov Mar 02 '17 at 11:18