How can I display a complex image matrix in Matlab?
71 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
回答 (3 件)
ali alizadeh
2022 年 9 月 14 日
Hi dear
try this!
clear all
N=1001
I=rand(N,N,3)+1i*rand(N,N,3);
imshow(I,[])
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!