Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Need help with STBC and STTC coding

Status
Not open for further replies.

almasbd

Newbie level 3
Joined
Feb 20, 2006
Messages
3
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,311
gngauss error

Hi,

in mimo system using space time block coding and space time trellis
coding other lyred space time coding .


i know only conventional coding and block coding.


is STBC or or STTC are extended of Con cod and block cod?


when i study in MIMO related journal paper then i found chanel is
multipath fading this portion i m not very clear?


m i clear? by using stbc for mimo system performance is very good
against channel noise.


i have to right a coding BPSK for awgn from the book.


i m not clear this coding, what do u mean inside the coding


function [n1,n2]=gngauss(m,sgma)
% [n1 n2]=gngauss(m,sgma)
% [n1 n2]=gngauss(sgma)
% [n1 n2]=gngauss
% GNGAUSS generates two independent gaussian variables with
% mean m & S.D sgma
% if one of the input argement missing it takes mean as zero
% if neither mean nor variance is given, it generates two
%standard gaussian random variables


if nargin==0
m=0;
sgma=1;
elseif nargin==1
sgma=m;
m=0;
end
u=rand; % uniform random variable in (0,1)
z=sgma*(sqrt(2*log(1/(1-u)))); % rayleigh distributed random variable
u=rand; % another uniform distributed variable
in (0,1)
n1=m+z*cos(2*pi*u);
n2=m+z*sin(2*pi*u);


in stbc or sttc which type of error correction coding is better?

thanks in advance.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top