Subscript indices must either be real positive integers or logicals.

2 vues (au cours des 30 derniers jours)
shailesh pathak
shailesh pathak le 16 Mar 2018
Commenté : Adam le 16 Mar 2018
Subscript indices must either be real positive integers or logical.
Term1=sumnr(X,G,tau,i)/sumdr(X,G,i);
Please help!!
  4 commentaires
Adam
Adam le 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
Adam le 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!

Connectez-vous pour commenter.

Réponses (1)

M
M le 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 commentaires
M
M le 16 Mar 2018
Did you use the debug mode to see the source of error ?
shailesh pathak
shailesh pathak le 16 Mar 2018
debug mode showing correct values

Connectez-vous pour commenter.

Catégories

En savoir plus sur GPU Computing dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by