what is the error here? It is showing "Invalid expression. When calling a function or indexing a variable, use parentheses. Otherwise, check for mismatched delimiters."
2 ビュー (過去 30 日間)
古いコメントを表示
ea=(abs(A(ma_i,ma_j)-
A_old(ma_i,ma_j))/abs(A(ma_i,ma_j)))*100;
0 件のコメント
回答 (1 件)
Cris LaPierre
2021 年 5 月 15 日
You have split your equation over two lines without telling MATLAB. You must add an ellipsis at the end of the first line to indicate the two lines are to be read together.
ea=(abs(A(ma_i,ma_j)- ...
A_old(ma_i,ma_j))/abs(A(ma_i,ma_j)))*100;
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Dynamic System Models についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!