Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
20865 views
1
def generator():
2
matrix = Matrix([[1,0,3,7],[0,5,6,3],[0,0,0,0]])
3
matrix.subdivide(None, [3])
4
5
6
return {
7
"matrix": latex_system_from_matrix(matrix,alpha_mode=False,variables="z"),
8
}
9