You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, imag and real have type AFType a => Array a -> Array a. But imag and real convert complex numbers to real numbers, so the type should be (AFType a, AFType (Complex a)) => Array (Complex a) -> Array a.
The text was updated successfully, but these errors were encountered:
noughtmare
changed the title
imag and real should be of type Array (Complex a) -> Array a
imag and real should have type Array (Complex a) -> Array a
Nov 5, 2019
Currently,
imag
andreal
have typeAFType a => Array a -> Array a
. Butimag
andreal
convert complex numbers to real numbers, so the type should be(AFType a, AFType (Complex a)) => Array (Complex a) -> Array a
.The text was updated successfully, but these errors were encountered: