Pls in Qpsk modulation. Ive generated the source bits with s=rand(1,200)>0.5; mapped 2 bits to on Qpsk symbol with Qpsk=sqrt(Es)*sqrt(0.5)*((1-2*s(1:2:200))+1j*(1-2*s(2:2:200))) for Es=1 and plot(Qpsk,'+'),grid on. I added noise to Qpsk as n=(randn(1,100)+randn(1,100)*1j)./sqrt(2); and Transmited signal, TX=Qpsk+n and I ploted TX,for Es=1,10 and 100. Please how do i demodulation using the minimum distance detection algorithm to reproduce the binary bits. Help me and thank you+God bless...Ty
I don't know anything about demodulation. I would have to do some research. There is stuff on this algorithm out on the internet. Have you tried Google?
Does anyone know how I can have a multicolour line plot in matlab.Say for Temperature data where just one set of data is being plotted agaonst time.Above a certain temp I want the line colour to change.I cannot find a good example anywhere,someone please help.
Hi everyone! I am new to Matlab and the teacher who teaches it so arrogant and goes so fast and I feel stupid asking questions...I need some help with my homework...we did some stuff in class and now we have to look at it and write about it and I have zero clue where to start...Please if you wanna help please let me know :)
Hi everyone! I am new to Matlab and the teacher who teaches it so arrogant and goes so fast and I feel stupid asking questions...I need some help with my homework...we did some stuff in class and now we have to look at it and write about it and I have zero clue where to start...Please if you wanna help please let me know :)
I need to plot about 1,000 points, the coordinates of which are in a 3-column text file: 1st column the x-, 2nd column the y-, and the third column the z-coodinates. What is the best way to input them into MatLab for plotting? Thanks, Mr. Blanchard!!!
Tha,k for this video
it will be great if you make a demonstraion to explain hox to write a program
TheAlbro2008 4 months ago
well done....very useful for me.
greatSephi 4 months ago
EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
thelosserreturns4 6 months ago
Thanks for your rubbish Microsoft monopolistic tutorial.
dElogics 7 months ago
@dElogics
Interesting. Matlab runs on OS X and Linux, so I'm not sure why you would make such a comment.
jakeblanchard 7 months ago 4
@jakeblanchard
We have octave also.
dElogics 7 months ago
@dElogics
I agree that Octave is worth a look. It's an excellent alternative to Matlab and many Matlab scripts will run without modification in Octave.
jakeblanchard 7 months ago
@jakeblanchard
I'll be glad, it's opensourced.
dElogics 7 months ago
This has been flagged as spam show
There is an exciting contest on Tektronix® scopes and MATLAB® software and you could win $250 Amazon gift card. Its worth giving a try.
tekindia 9 months ago
better but very basic for someone who want to run a monte carlo! it is more matlab intro than monte intro
repsieximo 10 months ago
what should be the system configuration to run matlab? plz help..
saisrinivas1989 1 year ago
@saisrinivas1989
It runs on Windows, Mac, and Linux. Either 32 or 64 bit. Requirements are minimal: 1 GB RAM, etc. If cost is an issue, try Octave (just Google it).
jakeblanchard 1 year ago
what should be the system configuration to run matlab, plz help..
saisrinivas1989 1 year ago
Which version of Matlab should I use?
artistdigital 1 year ago
@artistdigital
For a beginner, there isn't much difference from version to version. Just use whatever you can get access to.
jakeblanchard 1 year ago
Pls in Qpsk modulation. Ive generated the source bits with s=rand(1,200)>0.5; mapped 2 bits to on Qpsk symbol with Qpsk=sqrt(Es)*sqrt(0.5)*((1-2*s(1:2:200))+1j*(1-2*s(2:2:200))) for Es=1 and plot(Qpsk,'+'),grid on. I added noise to Qpsk as n=(randn(1,100)+randn(1,100)*1j)./sqrt(2); and Transmited signal, TX=Qpsk+n and I ploted TX,for Es=1,10 and 100. Please how do i demodulation using the minimum distance detection algorithm to reproduce the binary bits. Help me and thank you+God bless...Ty
affexty 1 year ago
@affexty
I don't know anything about demodulation. I would have to do some research. There is stuff on this algorithm out on the internet. Have you tried Google?
jakeblanchard 1 year ago
@jakeblanchard -Thanks for your reply,I've check google and I'm getting some ideas but the progress is slow as I'm still very new to Matlab...
affexty 1 year ago
@affexty
OK. Let me know if you have questions.
jakeblanchard 1 year ago
Comment removed
affexty 1 year ago
please I want plot or solve this function in matlab for rc=1;
w=0:2; b=1/(3+i(w*rc-(1/w*rc)))
thanx
ameersabergowayed 1 year ago
@ameersabergowayed
Is i a complex number? If so, do you want to plot the magnitude of b?
jakeblanchard 1 year ago
@jakeblanchard yes this is a copmlex function (i or j )
ameersabergowayed 1 year ago
@ameersabergowayed
Something like this would work. It plots a list of b values in the complex plane. That is, it plots the real part of b vs the imaginart part of b.
rc=1;
w=0:0.01:2;
b=1./(3+i*(w*rc-(1./(w*rc))));
plot(b)
jakeblanchard 1 year ago
thank you
irfaanfr1 1 year ago
very important for anybody
thanks very much ..........
nnostalgy 1 year ago
Hi
Does anyone know how I can have a multicolour line plot in matlab.Say for Temperature data where just one set of data is being plotted agaonst time.Above a certain temp I want the line colour to change.I cannot find a good example anywhere,someone please help.
durbanknight1986 1 year ago
Hi everyone! I am new to Matlab and the teacher who teaches it so arrogant and goes so fast and I feel stupid asking questions...I need some help with my homework...we did some stuff in class and now we have to look at it and write about it and I have zero clue where to start...Please if you wanna help please let me know :)
deedee7320 1 year ago
@deedee7320 ok!
irfaanfr1 1 year ago
Comment removed
HandOfQuaid 2 years ago
very nice tutorial...
heloitsadi 2 years ago
Lots of useful info!
How do I select specific of elements from a vector or apply rules to a new vector, based on elements in a previous one? e.g. v1=[1 2 8 4]
and i want v2=[v(1)+v(2) v(2)+v(3)...up to v(length(v)-1)+v(length(v))].
edga69 2 years ago
I'm sure there are a variety of ways to do this. This works, but is not elegant:
v1=[1 2 8 4]
va=[0 v1];
vb=[v1 0];
v2=va+vb;
v2=v2(2:4)
jakeblanchard 2 years ago
thanks a lot. i was doing the same until the last line, when it went wrong when i was trying to generalise.
edga69 2 years ago
Hi everyone! I am new to Matlab and the teacher who teaches it so arrogant and goes so fast and I feel stupid asking questions...I need some help with my homework...we did some stuff in class and now we have to look at it and write about it and I have zero clue where to start...Please if you wanna help please let me know :)
deedee7320 1 year ago
thanks very much
baobo1230 3 years ago
thank you man
patopillo2000 3 years ago
You just summarized the first 4 lectures of Matlab for me.
Thanks!
desidude006 3 years ago
thats gr8. thanks!
sayienmalangi 3 years ago
thanks alots
its helpful as beginner for matlab
muhmahfud 3 years ago
THANKS! its great people are motivated to help others learn on the tube!
ZombieJesusBrainz 3 years ago
thank you very much !
shanshui281 3 years ago 6
Thank you for that :) It's really helpful ...had things our tutor never showed us :D
rossito 3 years ago 10
Thanks for the useful demo, Mr. Blanchard!
I need to plot about 1,000 points, the coordinates of which are in a 3-column text file: 1st column the x-, 2nd column the y-, and the third column the z-coodinates. What is the best way to input them into MatLab for plotting? Thanks, Mr. Blanchard!!!
24karatbrain 4 years ago 2