How to i convert complex single into complex double?

42 Ansichten (letzte 30 Tage)
Faheem Ur Rehman
Faheem Ur Rehman am 5 Jul. 2021
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.

Akzeptierte Antwort

KSSV
KSSV am 5 Jul. 2021
Read about the function double.
If x is your single signal.
x_double = double(x) ;

Weitere Antworten (1)

Chunru
Chunru am 5 Jul. 2021
frame = single(3+4i);
% Convert to double
frame = double(frame)
frame = 3.0000 + 4.0000i
class(frame)
ans = 'double'

Kategorien

Mehr zu Power and Energy Systems finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by