(T, m)
| 329 | |
| 330 | @pytest.mark.parametrize("T, m", test_data) |
| 331 | def test_subspace(T, m): |
| 332 | subseq_idx = 1 |
| 333 | nn_idx = 4 |
| 334 | |
| 335 | for k in range(T.shape[0]): |
| 336 | ref_S = maamp_subspace(T, m, subseq_idx, nn_idx, k) |
| 337 | comp_S = subspace(T, m, subseq_idx, nn_idx, k, normalize=False) |
| 338 | npt.assert_almost_equal(ref_S, comp_S) |
| 339 | |
| 340 | |
| 341 | @pytest.mark.parametrize("T, m", test_data) |
nothing calls this directly
no test coverage detected