Home • About • FAQs • News • Random Expert Selector • Random Question Selector • Contact Us • 

Top Level > Electronics & Gadgets > Electronics and Gadgets In General
1   2   3   4   5   6   7   next>>
Want to write an article on Electronics and Gadgets In General? -

Miss Donnah Hunt
Will a HD ready freeview box work on a normal television?

There are no answers to this question

Discuss this question

samuelekelly
Does anyone know the name of this toy? I had this toy when I was a kid (late 80s early 90s) and I can't remember what it was called. It was a headset that came with books (one on dinosaurs and one on the planets) and expansion cartridges. It was grey, purple and red. And if you pull out an expansion cartridge while it was on the head set would say ''PLEASE PUT IN THE EXPANSION CARTRIDGE.'' You could also choose the voice the headset used. I searched google for it but have had no luck. Hopefully someone can help me on my quest..

There are no answers to this question

Discuss this question

Miss Yellow River
Dear Sir/Madam,

How can I make HD Television broadcast original type TV show? I mean the original channel not the HD new channel? The most important to have a channel for a video recorder so that I can watch video tape.

Yours truly,

Miss Yellow River.

See answers to this question

Discuss this question

Jenny
Why is my Epsom stylus photo 1400 printer printing dark now...I have cleaned the printer heads and now I'm just starting to get frustrated!

See answers to this question

Discuss this question

m
Can you charge an Ipod touch with a PS2 slim?

See answers to this question

Discuss this question

what
Is $140 for an 8gb Ipod Touch a good deal?

See answers to this question

Discuss this question

Mrs chenju ven
Is MAc good?

There are no answers to this question

Discuss this question

Mr Stanley Clayton
Would a number of pulsed Lasers focused to a single beam carry an electric current?

There are no answers to this question

Discuss this question

Mr Tony Vanner
Can I both record and watch another freeview programme without needing 2 digital timers

thank you

T.Vanner

There are no answers to this question

Discuss this question

Mr furqaan abdulkareem
This is code for parallel interference cancelltion in ds cdma using matrix algebraic approach.

Please check the code and let me know if I am doing any mistake. Also I need to apply slow and fast rayleigh fading in this model.

The rcd signal is R = SAB + N

where R,S,A,B are matrices

The matlab code is given below :

close all

clear all;

clc;

warning off all

K = 27; %No. of users

Navg = 1e3; %No. of repititions

snr = 5:1:25; %SNR RANGE

Sv = (10.^(-snr/10)); %Noise variance in different SNR

A = eye(K); %input power

%Get signature sequences

load GS31;

S = GS31(1:K,;

S= S';

Lc = length(S(:,1));

Sn= S./sqrt(Lc); %Normalize energy of signature waveforms

R = Sn'*Sn; % Calculate correlation matrix

corr=(R-eye(size(R)));

h = waitbar(0,'WAIT...');

for t = 1:Navg

waitbar(t/Navg);

for j = 1:length(snr)

noise =(Sv(j))^.5*randn(Lc,1);

b=2*(randint(K,1)-0.5);

BT=Sn*A*b;

r=awgn(BT,snr(j));

% r=BT+noise;

y = Sn'*r;

ysdec = inv(R)*Sn'*r;

YMF = sign(y);

YDEC= sign(ysdec);

novector(1:K) = Sv(j);

sigma2= diag(novector);

t1=R+sigma2;

ysmmse = (inv ( t1 ))* y;

YMMSE= sign(ysmmse);

%%CPIC

yinit=zeros(K,1);

ypic1= (Sn'*r) + yinit ;

YPIC1 = sign(ypic1);

yinit2=ypic1;

ypic2=(Sn'*r) - ( corr*A*yinit2 );

YPIC2 = sign(ypic2);

yinit3=ypic2;

ypic3=(Sn'*r) - ( corr*A*yinit3 );

YPIC3 = sign(ypic3);

yinit4= ypic3;

ypic4=(Sn'*r) - ( corr*A*yinit4 );

YPIC4 = sign(ypic4);

yinit5= ypic4;

ypic5=(Sn'*r) - ( corr*A*yinit5 );

YPIC5 = sign(ypic5);

yinit6=ypic5;

ypic6=(Sn'*r) - ( corr*A*yinit6 );

YPIC6 = sign(ypic6);

yinit7=ypic6;

ypic7=(Sn'*r) - ( corr*A*yinit7 );

YPIC7 = sign(ypic7);

yinit8=ypic7;

ypic8=(Sn'*r) - ( corr*A*yinit8 );

YPIC8 = sign(ypic8);

ERMF(j)= length(find (YMF ~= b))/K;

ERDEC(j)= length(find (YDEC ~= b))/K;

ERMMSE(j)= length(find (YMMSE ~= b))/K;

ERPIC1(j)= length(find (YPIC1 ~= b))/K;

ERPIC2(j)= length(find (YPIC2 ~= b))/K;

ERPIC3(j)= length(find (YPIC3 ~= b))/K;

ERPIC4(j)= length(find (YPIC4 ~= b))/K;

ERPIC5(j)= length(find (YPIC5 ~= b))/K;

ERPIC6(j)= length(find (YPIC6 ~= b))/K;

ERPIC7(j)= length(find (YPIC7 ~= b))/K;

ERPIC8(j)= length(find (YPIC8 ~= b))/K;

end

EERMF(t,=ERMF;

EERDEC(t,=ERDEC;

EERMMSE(t,=ERMMSE;

EERPIC1(t,=ERPIC1;

EERPIC2(t,=ERPIC2;

EERPIC3(t,=ERPIC3;

EERPIC4(t,=ERPIC4;

EERPIC5(t,=ERPIC5;

EERPIC6(t,=ERPIC6;

EERPIC7(t,=ERPIC7;

EERPIC8(t,=ERPIC8;

end

BERMF = smooth(mean(EERMF,1));

BERDEC = smooth(mean(EERDEC,1));

BERMMSE = smooth(mean(EERMMSE,1));

BERPIC1 = smooth(mean(EERPIC1,1));

BERPIC2 = smooth(mean(EERPIC2,1));

BERPIC3 = smooth(mean(EERPIC3,1));

BERPIC4 = smooth(mean(EERPIC4,1));

BERPIC5 = smooth(mean(EERPIC5,1));

BERPIC6 = smooth(mean(EERPIC6,1));

BERPIC7 = smooth(mean(EERPIC7,1));

BERPIC8 = smooth(mean(EERPIC8,1));

semilogy(snr,BERMF,'k*-',snr,BERPIC1,'m^-',snr,BERPIC2,'rs-',snr,BERPIC3,'yo-',snr,BERPIC4,'k<-',snr,BERPIC5,'c^-',snr,BERPIC6,'y^-',snr,BERPIC7,'r>-',snr,BERPIC8,'bs-',snr,BERDEC,'g*-',snr,BERMMSE,'go-');

grid on

xlabel('SNR')

ylabel('Average BER')

legend('MF','Stage1','Stage2','Stage3','Stage4','Stage5','Stage6','Stage7','Stage8','DECOR','MMSE')

title('BER vs SNR--Conventional PIC-25 Users -AWGN Channel')

close(h)

Added after 1 minutes:

Dear all,

The : ) got replaced by a smiley.

I need urgent help regarding fading

thanks in advance

There are no answers to this question

Discuss this question

DavidMills
How specialized are the electronic safes ?

There are no answers to this question

Discuss this question

Mr milind navalkar
How to take down the meter reading or the units consumed of an electrical digital display meter ?

There are no answers to this question

Discuss this question

Ms JULISSA GOMEZ
What size amp do I need for a PYLE PDBT 45 Titanium super tweeter?

There are no answers to this question

Discuss this question

midge
I have a Nintendo ds lite. I just downloaded the instruction booklet. Now that is all I have. What accessories or other components are necessary to be able to use this thing?

There are no answers to this question

Discuss this question

Mr jonnie brennan
How can I add an extra IR receiver onto a CD player?

There are no answers to this question

Discuss this question

Mr Mario SS
What is the difference between 5.1Hifi and 5.1Home theater system? Which audio system is producing more bass effect?

See answers to this question

Discuss this question

Mr Ganesh mhatre
What is ups?

See answers to this question

Discuss this question

Mr sudesh ganar
What is difference between ac1 & ac3 contractors?

There are no answers to this question

Discuss this question

kkwajge
I use Dish TV. There is a feature under which I group my favourite channels under numbers 1,2,3,...I could make the groups of my favourite channels as per instructions given in the User's manual, but I do not know how to get the channels in a certain order of priority. For instance, I want X channel first to appear, then Y, then Z. But what I find is the priority order is disturbed although the channels selected do appear. How could I get the channels in a particular priority order?

There are no answers to this question

Discuss this question

kkwajge
Is it possible to revive the old video cassettes?

There are no answers to this question

Discuss this question

tapper
How does fios work?

See answers to this question

Discuss this question

tapper
How does fios work?

There are no answers to this question

Discuss this question

badvlad
Is it possible to play dvds via a HDMI cable to a computer monitor without a computer?

See answers to this question

Discuss this question

gurdipmankoo
Hello !

How to record a regular audio CD on MP3 player ? Also is there any software for converting regular audio CD in to MP3 CD ?

Thanks.

Gurdip

There are no answers to this question

Discuss this question

???

I got the sims 3 and my video card is out of date. I went down to the computer store and they said I needed a DSI Video Card ( not DSI Express, computers to old) but they did not have any. I called another computer store and they said even with a DSI card, the game would not run. I was wondering if he was right. I have a Windows XP Home Edition DELL.

See answers to this question

Discuss this question

Mr Abdul Shabir
Can anyone solve problems with my digicam?

See answers to this question

Discuss this question

Mr aled roberts
Who invented the sat nav?

See answers to this question

Discuss this question

Mr randy nash
If the illustrated capacitor has a value of 50 μf and a potential difference of 300 volts exists across its plates, what is the total number of coulombs it contains?

See answers to this question

Discuss this question

 caryn fuqua
My frigidaire dishwasher will wash but when you push normal wash then start go start to lower rack wash on anything I push. What could be the problem??

There are no answers to this question

Discuss this question

mezza
I have purchased a cooker that has a 13amp plug fitted and so can be plugged straight into a wall socket. However the old cooker was hard wired into the wall behind the cooker. Can I cut the plug off and hard wire the new one?

See answers to this question

Discuss this question

Mr hasan ali baig
What is the need for band limiting the signal towards the direction of increasing SVR?

There are no answers to this question

Discuss this question

Mr Sivadas M. India
I have seen most of the Supermarkets displaying many televisions with same movie/programme on the screen. My question is, how can I implement this technology without using a serial cable?

See answers to this question

Discuss this question

vic
I am an aspiring music producer and I went and bought a home studio set but now I cant get my recording to play from my software on my laptop through my speakers. Can you help?

See answers to this question

Discuss this question

Krissy1
I have an Audiovox Portable DVD player Model #D1788, that is less than a month old. It has worked wonderfully until tonight. I turned it on, fully charged with a clean DVD and pushed the screen to a 90 degree angle and the screen went white with lines running through it. I have sound and if I push it past the 90 degree angle it works fine. What happened?

See answers to this question

Discuss this question

Mr charles p
This may be in the wrong section!! However....I have a caravan leisure battery which has not been used in years. Obviously it is flat! Is there any way to bring it back to life?? Regards.

There are no answers to this question

Discuss this question

curious
Is it bad for a plasma TV to be transported flat on it's back?

See answers to this question

Discuss this question

Ms Margaret Hallam
What are the different type of jig?

There are no answers to this question

Discuss this question

Mr Khaleeq Ahmad
After 10 time red light flashing and goes off the TV set. The problem with the Sony Wega DRC KV-HR 29M 91 about three years old.

Please help to remove this problem.

Thanks & Regards

There are no answers to this question

Discuss this question

itsmytimebit
I bought a new 32 inch Toshiba, my girlfriend wiped it down with a damp cloth. Now there are tiny permanent horizontal black lines in the screen could I maybe just take the front plastic off and wipe corners? thanks

There are no answers to this question

Discuss this question

Miss Brooke Palu
What is the formula for a receiver's sensitivity? I've been googling it but cannot find the formula.

There are no answers to this question

Discuss this question

Mr DHARMENDER SINGH CHAHAL
Why the voltage is multiple of 11?

There are no answers to this question

Discuss this question

Ms Virginia Borders
I have the card from my Kodak digital Tamera installed into a card reader that is plugged into the USB port. The green light is on. How do I get the pictures off that card and onto my computer?

See answers to this question

Discuss this question

Mrs dodo 
How can I use USB for download cw 700s new keys?

There are no answers to this question

Discuss this question

Mrs kelly veness
My child put a strong magnet near our TV and now there is a big discoloured spot. Is there something I can do or buy to fix this?

See answers to this question

Discuss this question

 Fahad Alfadhl
Can a TV detector determine which channel someone is watching?

There are no answers to this question

Discuss this question

 Fahad Alfadhl
How does a gun’s silencer work?

There are no answers to this question

Discuss this question

Miss chloe young
What does it mean when it says file not supported on the r4 ds card?

There are no answers to this question

Discuss this question

Mr e c
How much does a regular houshold lightbulb cost to use per hour?

See answers to this question

Discuss this question

Mr rob derbyshire
Indesit IDL 530 dishwasher will not start. I have turned it off and on, checked water and electric supply - end light shows but start button just beeps on each programme??

See answers to this question

Discuss this question

?
I want to send an mailout via email using an excel sheet as my list of contacts, is this possible?

See answers to this question

Discuss this question

1   2   3   4   5   6   7   next>>
Want to write an article on Electronics and Gadgets In General? -
 Top of Page Terms and Conditions Privacy Disclaimer

© Simply Explained