Doubt on fft function

x=[1 2 6] x=fft(x) x =
9.0000 -3.0000 + 3.4641i -3.0000 - 3.4641i
x=x>-3
x= 1 0 0.
why this is coming as binary ?can this idea could be used as a binary coder? Expecting your kind reply.Thank you.

回答(1 个)

It isn't coming out as binary: it is coming out as logical, as you have assigned the result of the comparison to the variable "x".
If you are trying to extract the elements that are greater than -3 then
x(x>-3)
Please be careful about using comparison operations with complex data.

2 个评论

Pooja
Pooja 2013-2-7
编辑:Pooja 2013-2-7
Sir,from where we get solutions to these type of problems.From any matlab books?

此问题已关闭。

标签

提问:

2013-2-7

关闭:

2021-8-20

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by