SAS/IML software uses operators that apply to entire matrices.
You can add elements of the matrices A
and B
with the expression A+B
. You can perform matrix multiplication with the expression A*B
and perform elementwise multiplication with the expression A#B
.