• 2022-07-02
    画出连续时间信号[img=236x25]18034af68fd6486.png[/img]的采样信号,采样周期为1/40s,正确的MATLAB语句是( )
    A: stem([0:1/40:1],cos(20*pi*[0:1/40:1]));
    B: plot([0:1/40:1],cos(20*pi*[0:1/40:1]));
    C: fplot('cos(20*pi*t)',[0:1]);
    D: t=0:0.01:1; xc=cos(20*pi*t); plot(t,xc);