CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

| Download
Project: test
Views: 91872
Kernel: Unknown Kernel
from sympy import Symbol, Matrix from sympy.interactive import printing printing.init_printing() dt = Symbol('\Delta t') Q = Matrix([[.5*dt**2], [.5*dt**2], [dt], [dt]]) Q*Q.T Q = Matrix([[.5*dt**2], [dt]]) Q*Q.T
[0.25Δt40.5Δt30.5Δt3Δt2]\left[\begin{matrix}0.25 \Delta t^{4} & 0.5 \Delta t^{3}\\0.5 \Delta t^{3} & \Delta t^{2}\end{matrix}\right]