plot 2/3D vector(s)
Version 1.0.0.0 (1,61 KB) von
Ioannis Filippidis
Plots 2D or 3D vectors at points, both provided as matrices of column vectors.
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".
Zitieren als
Ioannis Filippidis (2026). plot 2/3D vector(s) (https://de.mathworks.com/matlabcentral/fileexchange/35224-plot-2-3d-vector-s), MATLAB Central File Exchange. Abgerufen.
Kompatibilität der MATLAB-Version
Erstellt mit
R2011b
Kompatibel mit allen Versionen
Plattform-Kompatibilität
Windows macOS LinuxKategorien
- MATLAB > Graphics > 2-D and 3-D Plots > Vector Fields >
Mehr zu Vector Fields finden Sie in Help Center und MATLAB Answers
Tags
Quellenangaben
Inspiriert von: plot 2/3D point(s)
Live Editor erkunden
Erstellen Sie Skripte mit Code, Ausgabe und formatiertem Text in einem einzigen ausführbaren Dokument.
| Version | Veröffentlicht | Versionshinweise | |
|---|---|---|---|
| 1.0.0.0 |
