Let's say I have 2 vectors:
[a, b, c]
[x, y, z]
And I need to do an operation like the following for a computer program:
[a*x, b*y, c*z]
What I want to know is if this operation is defined as a common vector operation? And what can I call it? I ask this because I can't find any information about it. Of course nothing tells me I can't do this, it may just not be a "normal" vector operation.
Component-wise multiplication (or coordinate-wise multiplication like @Theo mentioned in his comment).