How can I display a complex image matrix in Matlab?
75 views (last 30 days)
Show older comments
Hi, I have two complex image matrices of size 1001 x 1001 and I want to display them in Matlab. I tried using the image() and imshow() commands and using the abs, fft and real commands to be able to display them but I keep getting errors. Can somebody help me how can I do this?
0 Comments
Answers (3)
ali alizadeh
on 14 Sep 2022
Hi dear
try this!
clear all
N=1001
I=rand(N,N,3)+1i*rand(N,N,3);
imshow(I,[])
0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!