Page MenuHomec4science

test_math_helper.py
No OneTemporary

File Metadata

Created
Fri, Apr 26, 03:18

test_math_helper.py

#!/bin/env python3
# -*- coding: utf-8 -*-
from Slides import math_helper as mh
import numpy as np
from sympy import Matrix
def test_print_colored_matrix():
a = Matrix(np.zeros((2, 2)))
a = mh.ColoredMatrix(a)
mh.print_latex('{0}', a)

Event Timeline