(self)
| 133 | assert_equal(logspace(a, b), logspace(1.0, 5.0)) |
| 134 | |
| 135 | def test_subclass(self): |
| 136 | a = array(1).view(PhysicalQuantity2) |
| 137 | b = array(7).view(PhysicalQuantity2) |
| 138 | ls = logspace(a, b) |
| 139 | assert type(ls) is PhysicalQuantity2 |
| 140 | assert_equal(ls, logspace(1.0, 7.0)) |
| 141 | ls = logspace(a, b, 1) |
| 142 | assert type(ls) is PhysicalQuantity2 |
| 143 | assert_equal(ls, logspace(1.0, 7.0, 1)) |
| 144 | |
| 145 | |
| 146 | class TestGeomspace: |
nothing calls this directly
no test coverage detected