E4 (3 mark): Create a SubVI that accepts two numeric arrays, representing two vectors
in 3-dimensional cartesian space, and returns the cross product as an array.
SubVI inputs: x and Y both are numeric arrays.
SubVI output: [V] cross product array.
Use the formula:
v^(1)=x^(2)y^(-)x^(3)y^(2)v^(2)=x^(3)y^(-)x^(1)y^(3)
v^(3)=x^(1)y^(2)-x^(2)y^(1)
You should implement the calculations using multiply and subtract functions along with
array manipulation functions.
Don't use linear algebra functions. Use proper descriptive icon.