3

I searched "slash at" as well as "/@" to no avail.

Consider

Normalize /@ A

I see the net effect, but what does /@ really mean? I understand that @ can be used in lieu of bracket [] for functional inputs. I understand /. is a replacement operator. But what is /@ ?

zahbaz
  • 133
  • 5

1 Answers1

2

It is the infix form of Map and takes each Element of the list A and applies it to Normalize in your case. The result is a List of the respective results.

See also: https://reference.wolfram.com/language/ref/Map.html

f /@ {a, b, c, d, e}
(* {f[a] , f[b], f[c] , f[d] , f[e]}*)
DPF
  • 1,067
  • 8
  • 19