Subscript indices must either be real positive integers or logicals error,
1 view (last 30 days)
Show older comments
sandil thumbela
on 26 Mar 2016
Commented: sandil thumbela
on 26 Mar 2016
r=10;
z=0:0.1:4*pi;
x=r*(z-sin(z));
Subscript indices must either be real positive integers or logicals.
I keep getting this error whenever I use a function involving sine. Even if use examples from a book or matlab examples the error keeps popping up? Any one having the same problem. this is matlab R2015b
0 Comments
Accepted Answer
Azzi Abdelmalek
on 26 Mar 2016
Edited: Azzi Abdelmalek
on 26 Mar 2016
Try this
clear sin
r=10;
z=0:0.1:4*pi;
x=r*(z-sin(z))
Probably sin was used as a variable in a previous program
More Answers (0)
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!