从Google Chrome 中移除Ask工具栏
1、点击Chrome工具栏上的的菜单按钮,选择“工具”,点击“扩展”。
2、选择“扩展”。
3、点击旁边的小垃圾箱标志,移除Ask工具栏。
Ask工具栏已经删除。
module zxbo(clock0,out6,out8,out,q0,eoc,din,ale,fi,add_a,oe,out1,fs)input clock0 //750khz
input [7:0]din
input eoc
output q0
output [7:0]out
output [7:0]out6,out8 //f(1)=out6=1.329khz, f(0)=out8=0.997khz
output fs,oe,add_a,ale,out1,fi
zxb zxb0(clock0,out6,out8,out,q0) //modulation
ad ad0(eoc,clock0,din,ale,fi,add_a,oe,out1,fs) //demodulation
endmodule
psk,fsk,ask matlab 程序不懂求助 m'西西沃 人气 1 回答 0 提问时间 2008-01-17 14:47 PSK系统程序: clear allM=4Fd=1Fs=32SNRperBit=5adjSNR=SNRperBit-10*log10(Fs/Fd)+10*log10(log2(M))%原始信号 x=randint(5000,1,M)tone=0.5randn('state',1945724)w1=dmodce(x,Fd,Fs,'psk',M,tone)y1=awgn(w1,adjSNR,'measured',[],'dB')z1=ddemodce(y1,Fd,Fs,'psk',M,tone)PSKser=symerr(x,z1)运行结果显示: FSK系统程序: clear allM=4Fd=1Fs=32SNRperBit=5adjSNR=SNRperBit-10*log10(Fs/Fd)+10*log10(log2(M))%原始信号 x=randint(5000,1,M)tone=0.5randn('state',1945724)w1=dmodce(x,Fd,Fs,'fsk',M,tone)y1=awgn(w1,adjSNR,'measured',[],'dB')z1=ddemodce(y1,Fd,Fs,'fsk',M,tone)FSKser=symerr(x,z1)运行结果显示: ASK系统程序: clear allM=4Fd=1Fs=32SNRperBit=5adjSNR=SNRperBit-10*log10(Fs/Fd)+10*log10(log2(M))%原始信号 x=randint(5000,1,M)tone=0.5randn('state',1945724)w1=dmodce(x,Fd,Fs,'qask',M,tone)y1=awgn(w1,adjSNR,'measured',[],'dB')z1=ddemodce(y1,Fd,Fs,'qask',M,tone)ASKser=symerr(x,z1)运行结果显示:欢迎分享,转载请注明来源:内存溢出
评论列表(0条)