i get an error when i try to define type of modulation
2 次查看(过去 30 天)
显示 更早的评论
This expression'
mod_methods = ('BPSK','QPSK','8PSK','16QAM','32QAM','64QAM');
gives me this error
Expression or statement is incorrect--possibly unbalanced (, {, or [.
0 个评论
采纳的回答
Walter Roberson
2015-12-4
mod_methods = {'BPSK','QPSK','8PSK','16QAM','32QAM','64QAM'};
2 个评论
Walter Roberson
2015-12-5
[real(symbol_book) imag(symbol_book)] together makes a matrix with 8 columns, such as if there are 4 columns in symbol_book. But [real(X_hat) imag(X_hat)], the locations to search for, does not have 8 columns. The locations to search for (the second parameter) must have the same number of columns as the first parameter.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 QPSK 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!