if statement matlab problem
1 回表示 (過去 30 日間)
古いコメントを表示
I got issue on my code. That I put if statement under the else statement it's return a weird number.
The background here is in1 is for vector of original and resubimission grade. in2 is a character vector with entries reading either 'a' or 'm' , to determine if the two grade would be treat with average or maxium. But one requiurement is that when the resubimission grade is lower than the original grade, it would be picked original grade instead of average grade. Only when resubmission is higher and choose average. I added this argument under the else statement that
if(in1(ct>ct+1))
score=score+ct;
but the result comes out run. How should I fix it.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/310700/image.png)
採用された回答
Rafael S.T. Vieira
2020 年 6 月 5 日
編集済み: Rafael S.T. Vieira
2020 年 6 月 5 日
Please, try to put end's at both if's. The inner if may be capturing the outer if end.
6 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Downloads についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!