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;

回答(1 个)

Cris LaPierre
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.
See here.
ea=(abs(A(ma_i,ma_j)- ...
A_old(ma_i,ma_j))/abs(A(ma_i,ma_j)))*100;

类别

Help CenterFile Exchange 中查找有关 Dynamic System Models 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by