How to take cross product of two 2D vector fields
32 次查看(过去 30 天)
显示 更早的评论
I have 2 vector fields say
and
. I want to calculate cross product of A and B
. I have 2D matrices of
and
.





i.e.
clear; clc;
% A = (Ax, Ay); B = (Bx, By);
Ax = rand(10,10);
Ay = rand(10,10);
Bx = rand(10,10);
By = rand(10,10);
% how to calculate A X B = ?
0 个评论
采纳的回答
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!