.mat文件中包含的矩阵X表示获取的信号。矩阵的位置(i,j)的元素是第j个屏幕的第i个样本。采样频率等于4 GS / s。 如何使用MatLab绘制相对于X中包含的信号的眼图? 我尝试了但是我无法从矩阵X中绘制眼图(参见http://ge.tt/8Xq5SYh/v/1?c)。这是我使用的矩阵X的链接:
和我的MatLab代码:
%sampling frequency fs=4 GS/s
rows=4000; %4000 rows (samples) |__ in matrix X
columns=10; %1000 columns (screens) |
%for plot all the graphics in the same window (overlapping)
hold on;
%index of the single row (column for the single column)
row=1:1:100;
t=1:1:100;
for column=1:columns,
%plot
plot(t,X(row, column),'-bo','LineWidth',1, 'MarkerEdgeColor','b', 'MarkerFaceColor','b', 'MarkerSize',2);
end
%axis properties
set(gca,'YTick', [-0.5 -0.45 -0.4 -0.35 -0.3 -0.25 -0.2 -0.15 -0.1 -0.05 0 0.05 0.1 0.15 0.2 0.25 0.3 0.35 0.4 0.45 0.5]); %soli valori di ascisse da visualizzare
grid on;
set(gca,'GridLineStyle','-');
axis([0 10 -0.5 0.5]);
有人可以试着告诉我该怎么办? 也许矩阵不正确?
提前致谢任何回答
的人答案 0 :(得分:1)
您可以简单地plot(x,'b')
。 plot命令将为x
的每一列绘制一条线,它对应于每个“屏幕”的所有样本。命令中的'b'
只是为了使每条线都像典型的眼图一样颜色。