Subscript indices must either be real positive integers or logicals.
1 view (last 30 days)
Show older comments
Subscript indices must either be real positive integers or logical.
Term1=sumnr(X,G,tau,i)/sumdr(X,G,i);
Please help!!
4 Comments
Adam
on 16 Mar 2018
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
on 16 Mar 2018
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!
Answers (1)
M
on 16 Mar 2018
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.
3 Comments
See Also
Categories
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!