thanks you so much for your quick reply
can you let me know if this is also correct ?
clear all;
close all;
A=400*pi/340;
theta= -2*pi:0.03:2*pi;
y=exp(1i*A*theta);
grid on;
hold on;
plot(theta,y, 'r-*','MarkerEdgeColor','b');
xlabel('Distance')...
Hi Everyone,
I am a new Matlab User, I am want to plot the equation y=cos(A*x) + i*sin(A*x)
where A = 400*pi/340 and want to plot y and vary x from pi:0.1:pi
clear all;
close all;
A = 400*pi/340;
x = -180:0,1:180;
a=cos(A*x);
b=i*sin(A*x);
i= imag(b);
hold on;
grid...
Hey Baluncore, firstly thanks for your reply to my thread.
Well i am just doing some research on "Phase Synchronisation Techniques" in Mobile or Satellite. I have been searching for some papers on IEEE papers but most of them come as Phase Syn for Power instead of Mobile/Satellite.
Cheers
Thanks Berkeman for your reply. Yeah I did googled the title "Phase Synchronisation Techniques". After lots of research I came up with
1. Phase Locked Loop.
2. Closed Loop Control.
Are those correct ?
Hello Everyone,
I was wondering if anyone out there would know any kind of phase synchronisation techniques used in mobile/satellite communication. Thanks in advance
With Regards,
Max