Array Index .. values ERROR

2 views (last 30 days)
Peter Vella
Peter Vella on 16 Aug 2019
Commented: Walter Roberson on 19 Aug 2019
I am p/ time student and I have a main file with supporting functions which is giving me the error "Array indices must be positive integers or logical values. (Quite new to MATLAB)
(Have attached the files which have been found in an MSc thesis, which I intend to modify to suit my needs. But as a starter I need to get these working ...)
1) LOADER needs to run first based on the xlsx file (which looks to be working well)
2) Hence TESV should run. When it does it is finding a problem with GETMASS ...
Thanks if anyone can help.
  4 Comments
Stephen23
Stephen23 on 16 Aug 2019
Edited: Stephen23 on 16 Aug 2019
@Peter Vella: when the error occurs, what size is tempsCol, and what values does it have?
The debugging tools will help you, e.g. dbstop if error
Peter Vella
Peter Vella on 16 Aug 2019
>> size tempsCol
ans =
1 8
>> size massCol
ans =
1 7
There certainly is a mismatch but I cannot sort it out yet ..

Sign in to comment.

Answers (1)

Subhadeep Koley
Subhadeep Koley on 19 Aug 2019
Hi Peter,
By setting breakpoint on line 13 of the live script GETMASS.mlx I can see that the elements of the array tempsCol is not integers instead they are double.
tempsCol.PNG
Therefore, elements of tempsCol cannot be used as array indexes.
Also, RHO_HTF is a variable of size (1×55) whereas tempsCol is (1×20). Therefore, even if tempsCol were of integer / logical class it would give “Index exceeds the number of array elements (55)” error.
Therefore, Some changes in your logic is required so that the tempsCol elements become integers or logical values of size 1×55.
  1 Comment
Walter Roberson
Walter Roberson on 19 Aug 2019
Though if tempsCol were logical, it could be of any length provided that it does not have any true values in any position past the end of the array it is indexing. A 1 x 20 logical would be valid to index a 1 x 55 array: positions 23 to end would be treated as false .
But this quibble about how logical indices operate is not likely to be relevant. It is relevant, though, that integer indices around 75-ish are past the end of a 1 x 55 array.

Sign in to comment.

Products


Release

R2019a

Community Treasure Hunt

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

Start Hunting!