美文网首页
MATLAB初试水

MATLAB初试水

作者: hyjdaydream | 来源:发表于2017-10-21 12:54 被阅读0次

    数字信号是离散信号;模拟信号是连续信号,广泛存在于自然界中。

    简单写出来几个信号,不知对错,先放在这里:

    t=[0:1/Fs:1]时间长度为0-1,采样频率为1/Fs


    n=[-2,-1,0,1,2];

    x=[1,3,-5,3,-2];

    stem(n,x);

    axis([-3,3,-6,6]);%5个离散信号的采样点

    figure;

    Fs=1000;

    t=[0:1/Fs:1];

    y=sin(2*pi*100*t);

    stem(t(1:50),y(1:50));%采样频率为1000HZ的离散信号前50个采样点

    figure;

    plot(t(1:50),y(1:50));

    相关文章

      网友评论

          本文标题:MATLAB初试水

          本文链接:https://www.haomeiwen.com/subject/pyciuxtx.html