Recent content by mtirmize

  1. M

    MATLAB Plot the equation y=cos(A*x) + i*sin(A*x) in MATLAB

    okay i understand that now. I really appreciate your help and your time. God Bless you
  2. M

    MATLAB Plot the equation y=cos(A*x) + i*sin(A*x) in MATLAB

    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')...
  3. M

    MATLAB Plot the equation y=cos(A*x) + i*sin(A*x) in MATLAB

    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...
  4. M

    Phase Synchronisation Techniques

    "Carrier Phase Synchronization using Phase lock loops" would that be a correct technique ?
  5. M

    Phase Synchronisation Techniques

    oh Baluncore, That is very helpful. Thank you so much
  6. M

    Phase Synchronisation Techniques

    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
  7. M

    Phase Synchronisation Techniques

    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 ?
  8. M

    Phase Synchronisation Techniques

    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
Back
Top