Telecommunications Blog: MATLAB

A blog for mobile communications systems GSM , UMTS and LTE

Recomended

Showing posts with label MATLAB. Show all posts
Showing posts with label MATLAB. Show all posts

Sunday, April 10, 2011

4G LTE Physical layer overview

4/10/2011 02:22:00 PM 0
4G LTE Physical layer overview
What is LTE?

    3GPP LTE (Long Term Evolution) is the name given to a project that aims to improve the
UMTS mobile phone and it is not a standard but it will result in the release 8 of UMTS
and it can be considered the real 3.9G & invited to join the 4G family.

Technical specifications:-


LTE PHY layer block diagram:-

Sunday, January 16, 2011

Basic commands and syntax in MATLAB

1/16/2011 12:46:00 PM 0
Basic commands and syntax in MATLAB
    We will speak about Basic commands and syntax in MATLAB to show how we can write code in it .

    If you type in a valid expression and press Enter, MATLAB will immediately execute it and return the result.

>> 2+2
ans =
           4

>> 4ˆ2

ans =
           16

>> sin(pi/2)

ans =
           1

>> 1/0


Intro to MATLAB

1/16/2011 12:30:00 PM 1
Intro to MATLAB
     MATLAB is a software package for computation in engineering, science, and applied mathematics. It offers a powerful programming language, excellent graphics, and a wide range of expertknowledge. MATLAB is published by and a trademark of The MathWorks, Inc.






     The focus in MATLAB is on computation, not mathematics. Hence symbolic expressions and manipulations are not possible (except through a clever interface to Maple). All results are not only numerical but inexact, thanks to the rounding errors inherent in computer arithmetic. The limitation to numerical computation can be seen as a drawback, but it is a source of strength too: MATLAB generally runs circles around Maple, Mathematica, and the like when it comes to numerics.