Using MATLAB, plot the vector field
? ⃗ = y2? ̂ − ??
̂ ??
?ℎ? ?????? − 2 < ? < +2 ??? − 2 < ? < +2
Find the magnitude of the vector field at the point
(?0,?0) = (3,2).
clc;clear all;
x = -2:0.1:2;
y = -2:0.1:2;
[X Y] = meshgrid(x,y);
U = Y.^2;
V = -X;
quiver(X,Y,U,V);
output:
Get Answers For Free
Most questions answered within 1 hours.