How to i convert complex single into complex double?
Ältere Kommentare anzeigen
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
Weitere Antworten (1)
frame = single(3+4i);
% Convert to double
frame = double(frame)
class(frame)
1 Kommentar
Faheem Ur Rehman
am 6 Jul. 2021
Kategorien
Mehr zu Text Analytics Toolbox finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!