asdf229955 发表于 2009-7-20 10:40

初学者请教画调频调幅图

clear all;
clc;
t=1:1000;

x=*cos+sin(240*pi*t);

plot(t,x);
xlabel('采样时间t/s'); ylabel('信号幅值A');

怎么总提示:x=*cos+sin(240*pi*t);这句有误,请高手指教如何画这类调频调幅信号。

friendchj 发表于 2009-7-20 12:01

根据需要,设置点乘(对应元素乘)或矩阵相乘。
x=(1+0.2*sin(15*pi*t)).*cos(60*pi*t+0.5*sin(30*pi*t))+sin(240*pi*t);

[ 本帖最后由 friendchj 于 2009-7-20 12:03 编辑 ]

ChaChing 发表于 2009-7-20 16:22

建议LZ看下
常见的程序出错问题整理 (eight)
http://forum.vibunion.com/forum/thread-46001-1-1.html

asdf229955 发表于 2009-7-21 10:24

非常感谢,自己都觉得有点。。。
页: [1]
查看完整版本: 初学者请教画调频调幅图