()
| 22 | def f64_array(): |
| 23 | return np.reshape(np.arange(-12.5, 12.5, 2.1,dtype=np.float64),(3,4)) |
| 24 | def c64_array(): |
| 25 | return f32_array() - 1j*f32_array() |
| 26 | def c128_array(): |
| 27 | return f64_array() - 1j*f64_array() |
nothing calls this directly
no test coverage detected