How to plot constant vector field: f(x,y)=2 ax + ay
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Mustafa Shahid
el 26 de Mzo. de 2022
Comentada: VBBV
el 30 de Mzo. de 2022
x=-3:3;
>> y=-5:5;
>> [x,y]=meshgrid(x,y);
>> u=2;v=1;
>> quiver(x,y,u,v)
Error using quiver (line 44)
The size of X must match the size of U or the number of columns of U.
0 comentarios
Respuesta aceptada
Más respuestas (0)
Ver también
Categorías
Más información sobre Vector Fields 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!
