How to i convert complex single into complex double?

I need dataset in complex double form to test the pretrained model. but when i prepare the dataset it is saved in the complex sigle from. i have attached the .mat file for furter proceding.

 採用された回答

KSSV
KSSV 2021 年 7 月 5 日

0 投票

Read about the function double.
If x is your single signal.
x_double = double(x) ;

その他の回答 (1 件)

Chunru
Chunru 2021 年 7 月 5 日

0 投票

frame = single(3+4i);
% Convert to double
frame = double(frame)
frame = 3.0000 + 4.0000i
class(frame)
ans = 'double'

カテゴリ

ヘルプ センター および File ExchangeCommunications Toolbox についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by