Subscript indices must either be real positive integers or logicals.

1 次查看(过去 30 天)
Subscript indices must either be real positive integers or logical.
Term1=sumnr(X,G,tau,i)/sumdr(X,G,i);
Please help!!
  4 个评论
Adam
Adam 2018-3-16
Just use the debugger and look at all your variables and you will have the answer far faster than someone can suggest remotely. The error message is as clear as it can be so just look for the index that does not conform to the expectation.
Use the 'Pause on Errors' option to help locate the error, especially if it is in a loop.
Adam
Adam 2018-3-16
The other most likely cause of an error like this is if you have named variables sumnr or sumdr as these would hide the functions of the same name and Matlab would try to interpret what you think are input arguments to a function as indices into a vector.
Never name variables the same as functions!

请先登录,再进行评论。

回答(1 个)

M
M 2018-3-16
Did you define i before calling this line ?
Term3=(sumnr(X,G,tau,i)-X(i)*G(i,i)*tau(i,i))/(sumdr(X,G,i)-X(i)*G(i,i));
If not, i will be the imaginary number and not a real positive integers as it is said in the error message.

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by