有没有一种方法可以绘制像gegebra.readthedocs.io上的演示所示的几何代数图形?

时间:2019-07-06 10:42:12

标签: python matplotlib sympy

我正在尝试使用galgebra绘制此图。

此代码来自galgebra文档

from sympy import symbols
from galgebra.ga import Ga

from galgebra.printer import Format
Format(Fmode = False, Dmode = True)

st4coords = (t,x,y,z) = symbols('t x y z', real=True)
st4 = Ga('e_t e_x e_y e_z',
         g=[1,-1,-1,-1],
         coords=st4coords)

M = st4.mv('M','mv',f = True)

M.grade(3).Fmt(3,r'\langle \mathbf{M} \rangle _3')

在乳胶中仅生成一个数学方程式。

我已经在文档和github上尝试了其他示例。

没有人能像演示一样产生人物。有没有办法做到这一点?

enter image description here

0 个答案:

没有答案