想要用matlab产生一个正弦信号加-1到1的均匀随机噪声进行量化处理怎么老出现错误
t=[0:0.005:10];N=10;s=2.*sin(2.*pi.*t);x=s+2.*rand(1,N)-1;plot(t,x)[sqnr16,aquan16,co...
t=[0:0.005:10];
N=10;
s=2.*sin(2.*pi.*t);
x=s+2.*rand(1,N)-1;
plot(t,x)
[sqnr16,aquan16,code16]=upcm(x,8);
plot(t,x,'-',t,aquan16,'*')
legend('原始正弦信号','级数为16的PCM量化后信号');
Error in ==> Untitled7 at 4
x=s+2.*rand(1,N)-1; 展开
N=10;
s=2.*sin(2.*pi.*t);
x=s+2.*rand(1,N)-1;
plot(t,x)
[sqnr16,aquan16,code16]=upcm(x,8);
plot(t,x,'-',t,aquan16,'*')
legend('原始正弦信号','级数为16的PCM量化后信号');
Error in ==> Untitled7 at 4
x=s+2.*rand(1,N)-1; 展开
展开全部
t=[0:0.005:10];
N=length(t);
s=2.*sin(2.*pi.*t);
x=s+2.*rand(1,N)-1;
plot(t,x)
N=length(t);
s=2.*sin(2.*pi.*t);
x=s+2.*rand(1,N)-1;
plot(t,x)
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
改成这样
x=s+(2.*rand(1,N)-ones(1,N));
x=s+(2.*rand(1,N)-ones(1,N));
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询