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

조회 수: 26 (최근 30일)
Amar
Amar 2013년 7월 28일
댓글: Voss 2024년 8월 21일
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
Ramya M S
Ramya M S 2017년 2월 10일
??? Error: File: aesinit.m Line: 1 Column: 35 Unexpected MATLAB expression.
Jan
Jan 2017년 2월 11일
@Ramya M S: How can we help you?

댓글을 달려면 로그인하십시오.

답변 (2개)

Jan
Jan 2013년 7월 28일
Open the file in the editor and look for red MLint marks on the right side.

Deva
Deva 2024년 8월 21일
Pr_two_ray = Pt * (Gt * Gr * (transmitterHeight * receiverHeight)^2) ./ (distance.^4 * L);
Unrecognized function or variable 'Pt'.
  댓글 수: 2
Walter Roberson
Walter Roberson 2024년 8월 21일
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
Voss
Voss 2024년 8월 21일
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'.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Whos에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by