import numpy as np
a = np.array([[2,3,3,1], [-4,-6,3,2], [-1,1,1,1], [-2,-1,1,1]]) #matrice
b = np.array([15,3,5,1]) #second membre
x = np.linalg.solve(a, b)
Auteur/autrice : himmelspach
Plot 3D en python
https://matplotlib.org/stable/gallery/mplot3d/scatter3d.html
import matplotlib.pyplot as plt
ax = plt.axes(projection='3d')
ax.scatter(listeX, listeY, listeZ)
plt.show()
Fonctionnement d’un moteur synchrone
Alternateur
Moteur asynchrone monophasé
Théorème de Boucherot
Fonctionnement d’un moteur asynchrone triphasé
Résolution d’un circuit électrique complexe
r

