- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How does Python's Matplotlib.pyplot.quiver exactly work?
To work with quiver, we can take the following steps −
Set the figure size and adjust the padding between and around the subplots.
Create vector cordinates using numpy array.
Get x, y, u and v data points.
Create a new figure or activate an existing figure using figure() method.
Get the current axis using gca() method.
Set x and y limit of the axes.
To redraw the current figure, use draw() method.
To display the figure, use show() method.
Example
import numpy as np import matplotlib.pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True soa = np.array([[0, 0, 3, 2], [0, 0, 4, 5], [0, 0, 9, 9]]) X, Y, U, V = zip(*soa) plt.figure() ax = plt.gca() ax.quiver(X, Y, U, V, angles='xy', scale_units='xy', scale=1, color=['red', 'green', 'yellow']) ax.set_xlim([-1, 10]) ax.set_ylim([-1, 10]) plt.draw() plt.show()
Output
- Related Articles
- How exactly does work?\n
- Explain how a quiver plot can be built using Matplotlib Python?
- How does Python's super() work with multiple inheritance?
- How to zoom subplots together in Matplotlib/Pyplot?
- How is the Pyplot histogram bins interpreted? (Matplotlib)
- How to make a quiver plot in polar coordinates using Matplotlib?
- How does Selenium WebDriver's isDisplayed() method work?
- How does Python while loop work?
- How does a Python interpreter work?
- How do I close all the open pyplot windows (Matplotlib)?
- How does tuple comparison work in Python?
- How does underscore "_" work in Python files?
- How does garbage collection work in Python?
- How does class inheritance work in Python?
- How does issubclass() function work in Python?

Advertisements