Skip to content

Access real and imaginary parts of mx.complex64 #1331

Answered by angeloskath
louisamand asked this question in Q&A
Discussion options

You must be logged in to vote

We should implement that for sure! In the meantime the following should work well

def real(x):
    return mx.view(x, mx.float32)[..., ::2]


def imag(x):
    return mx.view(x, mx.float32)[..., 1::2]

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@louisamand
Comment options

Answer selected by louisamand
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants