Question: Units[Simple]:-max[index] ?

Apparently the Units[Simple] package has not implemented certain features of the original implementation, which (again) leads to very unexpected and wrong results.

This is not acceptable.

Either...

  1. Implement everything
  2. Give a proper warning

a := [0, 1.2, 2, 8, -1.3]

[0, 1.2, 2, 8, -1.3]

(1)

max(a)

8

(2)

Units[Simple]:-max(a)

8

(3)

max[index](a)

4

(4)

Units[Simple]:-max[index](a)

8

(5)

````

Download maxindex.mw

Please Wait...