Plus
Disponibile
Add numbers.
+
List arithmetic (threading)
Arithmetic operations are automatically threaded over lists:
Plus[1, 2]
→ 3Plus[1, 2, 3]
→ 6Plus[-1, -2]
→ -31+2
→ 38 + (-5)
→ 3{1, 2, 3} + 2
→ {3, 4, 5}2 + {1, 2, 3}
→ {3, 4, 5}{1, 2, 3} + {4, 5, 6}
→ {5, 7, 9}{1, 2, 3} - 1
→ {0, 1, 2}{1, 2, 3} * 2
→ {2, 4, 6}{2, 4, 6} / 2
→ {1, 2, 3}{1, 2, 3} ^ 2
→ {1, 4, 9} Tutte le 6300 funzioni ·
Usa questo da un client MCP