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.
采纳的回答
更多回答(1 个)
frame = single(3+4i);
% Convert to double
frame = double(frame)
class(frame)
类别
在 帮助中心 和 File Exchange 中查找有关 Text Analytics Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!