how to convert cell to mat
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I have a cell array of size h=4X1. Inside it has 4 different matrices of size 32X64. How to convert it to matrix. I used htemp=cell2mat(h). Now the size is 128x64. After that i try to separate the real and imaginary parts of htemp using htempreal=zeros(128,64,2). then htempreal(:,:,1)=real(htemp) and htempreal(:,:,2)=imag(htemp). at this point it shows error unable to perform assignment because the size of the left side is 128 by 64 and the size of the right side is 32 by 64.
0 Kommentare
Siehe auch
Kategorien
Mehr zu RF Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!