remove debugging print
This commit is contained in:
parent
322b5ebc9b
commit
3369bb290a
|
@ -249,7 +249,6 @@ class MainWindow(QMainWindow):
|
||||||
def generate_sim_data(self) -> None:
|
def generate_sim_data(self) -> None:
|
||||||
coords = {"frequency": np.linspace(1e9, 2e9, 101), "m": [1], "n": [1]}
|
coords = {"frequency": np.linspace(1e9, 2e9, 101), "m": [1], "n": [1]}
|
||||||
shape = tuple(len(v) for v in coords.values())
|
shape = tuple(len(v) for v in coords.values())
|
||||||
print(shape)
|
|
||||||
data = xr.DataArray(
|
data = xr.DataArray(
|
||||||
((-1 + 2 * np.random.rand(*shape)) + 1j * (-1 + 2 * np.random.rand(*shape))) / np.sqrt(2),
|
((-1 + 2 * np.random.rand(*shape)) + 1j * (-1 + 2 * np.random.rand(*shape))) / np.sqrt(2),
|
||||||
dims=list(coords.keys()),
|
dims=list(coords.keys()),
|
||||||
|
|
Loading…
Reference in New Issue
Block a user