mshowboth.m

来自「人体脑信号波形检测与分析」· M 代码 · 共 16 行

M
16
字号
%show both

    sf=1;
    lm=length(chb);
    i=0:1:lm-1;
    
    set(gcf,'Name','Show Both');
    plot(i/sf,cho,'b');
    hold on;
    plot(i/sf,chb,'r');
    hold off;
    ylabel('show both');
    xlabel('time (s)');
    title('show both');
    grid on;
    set(gca,'NextPlot','replacechildren');

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?