Array Index .. values ERROR
1 次查看(过去 30 天)
显示 更早的评论
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.
回答(1 个)
Subhadeep Koley
2019-8-19
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.
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 个评论
Walter Roberson
2019-8-19
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.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrix Indexing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!