You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
--> min(list(1,2))
ans =
1. // OK
--> min(list(1,2),0)
in builtin min
Function not defined for given argument type(s),
check arguments or define function %l_min for overloading. // NOT OK, cf. above
--> min(0,list(1,2))
min: Wrong type for input argument #2: A matrix expected. // OK, according to help page
Please note, max suffers from an analogous defect.
The text was updated successfully, but these errors were encountered:
rdbyk
changed the title
Excutiong of "min(list(1,2),0)" asks for Overload Function "%l_min"
Execution of "min(list(1,2),0)" asks for Overload Function "%l_min"
May 27, 2018
Please note,
max
suffers from an analogous defect.The text was updated successfully, but these errors were encountered: