How to resolve error showing 'Unexpected matlab expression'?????

I am getting an error as Unexpected matlab expreesion; but i am neither be able to find out which expreesion is wrong and nor be able to resolve this error. Please help me...

3 commentaires

Image Analyst
Image Analyst le 28 Juil 2013
Modifié(e) : Image Analyst le 28 Juil 2013
How can we possibly help you considering what you've given us? It's probably a syntax error where you're missing an end or brace or something. Why don't you post the error message so you can get some help? And since this kind of error often involves nearby lines, post the chunk of code around the line that it complains about.
??? Error: File: aesinit.m Line: 1 Column: 35 Unexpected MATLAB expression.
Jan
Jan le 11 Fév 2017
@Ramya M S: How can we help you?

Connectez-vous pour commenter.

Réponses (2)

Jan
Jan le 28 Juil 2013
Open the file in the editor and look for red MLint marks on the right side.
Pr_two_ray = Pt * (Gt * Gr * (transmitterHeight * receiverHeight)^2) ./ (distance.^4 * L);
Unrecognized function or variable 'Pt'.

2 commentaires

I do not see any problems with that code.
Pt = rand();
Gt = rand();
Gr = rand();
transmitterHeight = rand();
receiverHeight = rand();
distance = rand();
L = rand();
Pr_two_ray = Pt * (Gt * Gr * (transmitterHeight * receiverHeight)^2) ./ (distance.^4 * L)
Pr_two_ray = 23.1791
Make sure Pt is defined before you try to use it.
Gt = rand();
Gr = rand();
transmitterHeight = rand();
receiverHeight = rand();
distance = rand();
L = rand();
Pr_two_ray = Pt * (Gt * Gr * (transmitterHeight * receiverHeight)^2) ./ (distance.^4 * L);
Unrecognized function or variable 'Pt'.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Entering Commands dans Centre d'aide et File Exchange

Question posée :

le 28 Juil 2013

Commenté :

le 21 Août 2024

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by