Setting BERTOOL in Matlab

Berisi tentang bagaimana menggunakan BERTOOL untuk mencari nilai BER

Kamis, 12 Desember 2013

Program Matlab NRZ Unipolar

Berikut ini merupakan program membuat gelombang NRZ Unipolar dengan Matlab : Listing program : bit = [1 0 1 0 0 0 1 1 0]; bitrate = 1; % bits per second figure; [t,s] = unrz(bit,bitrate); plot(t,s,'LineWidth',3); axis([0 t(end) -0.1 1.1]) grid on; title(['Unipolar NRZ: [' num2str(bits) ']']); Dan berikut keluaran dari program diatas : ...

Rabu, 11 Desember 2013

Setting BERTOOL in Matlab

If you confuse about How to Setting BERTOOL in matlab. You can follow this instruction in this Link : http://emotion-sahili.blogspot.com/p/matlab.htmlI've made for Indonesian language.So, Let's try and I hope that instruction can help you...

Program Matlab untuk NRZ-M PCM Waveforms

Berikut merupakan program untuk membuat program Matlab NRZ-M : %NRZ-M clear all;clc; x=[1 0 1 1 0 0 0 1 1 0];    %matriks inputan x n=length(x);    %mendapat jumlah isi var x t=0:1/16:n-1/16;    %mengatur sampling x(1)=1; xx=x; for k=2:n;     if x(k-1)==0 & x(k)==1;         xx(k)=-1;     end end m=xx; for k=1:n;    ...