Subscript indices must either be real positive integers or logicals.
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
Torsten
on 16 Mar 2018
More information needed concerning the variables (especially their type and dimensions) (X,G,tau,i) and the functions involved (sumnr,sumdr).
shailesh pathak
on 16 Mar 2018
Edited: Adam
on 16 Mar 2018
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
shailesh pathak
on 16 Mar 2018
M
on 16 Mar 2018
Did you use the debug mode to see the source of error ?
shailesh pathak
on 16 Mar 2018
Categories
Find more on Descriptive Statistics 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!