copapy/tests/test_vector.py

5 lines
130 B
Python
Raw Normal View History

2025-10-23 22:35:41 +00:00
import copapy as cp
def test_vec():
tt = cp.vector(range(3)) + cp.vector([1.1,2.2,3.3])
tt2 = (cp.vector(range(3)) + 5.6)