How to take cross product of two 2D vector fields
65 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Luqman Saleem
el 15 de Mayo de 2021
Comentada: Luqman Saleem
el 17 de Mayo de 2021
I have 2 vector fields say
and
. I want to calculate cross product of A and B
. I have 2D matrices of
and
.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/618728/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/618733/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/618738/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/618743/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/618748/image.png)
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 comentarios
Respuesta aceptada
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!