plot 2D array using imagesc ?

1 次查看(过去 30 天)
how to be like him plot 2D array using imagesc?
%The number of sample in the signal
N=640;
n=0:N-1;
fo=1/640;
%The signal x whose amplitude exceeds the range [-pi,pi]
x=5*sin(2*pi*fo*n);
plot(x);
xlabel('Sample index')
ylabel('Original phase in radians')
axis([-50 710 -5.6 5.6])
title('The signal x whose amplitude exceeds the range [-\pi,\pi]')
figure, plot(x)
xlabel('Sample index')
ylabel('Unwrapped phase in radians')
axis([-50 710 -5.6 5.6])
title('The unwrapped phase')
x = 5*sin(2*pi*fo*n);
imagesc(x)
colorbar

采纳的回答

KSSV
KSSV 2022-5-17
REad about subplot

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by