What could be the solution of this error (Parse error ar'(':usage might be invalid MATLAB syntax)?

19 ビュー (過去 30 日間)
I have the following error that is appearing in my work in %time domain
%time domain
1-tmin=0;
2-tmax=200;
3-dt1= ((2*D)/(U^2))-(deltax/U);
4-deltat=0.8*min([0.1,dt1]);
5-if deltat<0.01
6-deltat=0.01;
end
Line 6 deltat = 0.01;
the error is (Parse error ar'(':usage might be invalid MATLAB syntax).
  3 件のコメント
Manikanta Aditya
Manikanta Aditya 2024 年 4 月 30 日
編集済み: Manikanta Aditya 2024 年 4 月 30 日
I feel, D, U and deltax are to be defined, rest part code is fine. Yeah those 1-, 2- are line numbers xD
Stephen23
Stephen23 2024 年 4 月 30 日
"Yeah those 1-, 2- are line numbers xD"
Get rid them.

サインインしてコメントする。

回答 (1 件)

Manikanta Aditya
Manikanta Aditya 2024 年 4 月 30 日
編集済み: Manikanta Aditya 2024 年 4 月 30 日
The error message you’re seeing is typically due to a syntax error in your MATLAB code. In your case, the error message is “Parse error at ‘(’: usage might be invalid MATLAB syntax”. This suggests that there might be an issue with the use of parentheses in your code.
Check this code:
D = 1;
U = 1;
deltax = 1;
tmin=0;
tmax=200;
dt1= ((2*D)/(U^2))-(deltax/U);
deltat=0.8*min([0.1,dt1]);
if deltat<0.01
deltat=0.01;
end
Hope this helps.
  5 件のコメント
Abdallah Alrefaie
Abdallah Alrefaie 2024 年 5 月 3 日
@Manikanta Aditya Thank you for your answers and cooperation.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeJust for fun についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by