MATLAB: Cross Product and Vector Multiplication

cross productmatrix multiplcation

If i have the following 4 vectors:
D=Ax(B*C)
How would I solve for C?
Try and make this a tab bit more clear. I have A is a 1×3 matrix, B is a 3×3 matrix C is a 3×1 matrix and D is a 1×3 matrix. I am trying to solve for C. The problem is stated as A cross the product B*C equals D.

Best Answer

C = [ cross(A',B(:,1)) , cross(A',B(:,2)) , cross(A',B(:,3)) ]\(D');