Skip to content

Commit 8584f40

Browse files
committed
fix #406
1 parent a9d869e commit 8584f40

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

examples/robust_mimo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def triv_sigma(g, w):
4444
w - frequencies, length m
4545
s - (m,n) array of singular values of g(1j*w)"""
4646
m, p, _ = g.freqresp(w)
47-
sjw = (m*np.exp(1j*p*np.pi/180)).transpose(2, 0, 1)
47+
sjw = (m*np.exp(1j*p)).transpose(2, 0, 1)
4848
sv = np.linalg.svd(sjw, compute_uv=False)
4949
return sv
5050

0 commit comments

Comments
 (0)