plot 2/3D vector(s)
QUIVERMD(AX, X, V, VARARGIN) plots the column vectors in matrix V at the points with coordinates the column vectors in matrix X, within axes object AX using plot formatting options in VARARGIN.
Example
x = linspace(0, 10, 20);
y = linspace(0, 10, 20);
[X, Y] = meshgrid(x, y);
x = [X(:), Y(:) ].';
v = [sin(x(1, :) ); cos(x(2, :) ) ];
quivermd(gca, x, v)
For usage information please type "help quivermd".
Citar como
Ioannis Filippidis (2026). plot 2/3D vector(s) (https://es.mathworks.com/matlabcentral/fileexchange/35224-plot-2-3d-vector-s), MATLAB Central File Exchange. Recuperado .
Compatibilidad con la versión de MATLAB
Compatibilidad con las plataformas
Windows macOS LinuxCategorías
- MATLAB > Graphics > 2-D and 3-D Plots > Vector Fields >
Etiquetas
Agradecimientos
Inspirado por: plot 2/3D point(s)
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Descubra Live Editor
Cree scripts con código, salida y texto formateado en un documento ejecutable.
| Versión | Publicado | Notas de la versión | |
|---|---|---|---|
| 1.0.0.0 |
