I have these two errors when i try and run my script. Any help greatly appreciated
1 view (last 30 days)
Show older comments

0 Comments
Answers (1)
VBBV
on 8 Dec 2022
Edited: VBBV
on 8 Dec 2022
T = [T tmpt]
From the error, it is possible that this condition
T(find(T==-9.99)) = NaN; %
is not satisfied in the last(215th) filename which will return a zero (empty) index value. In Matlab zero indexing is not used, only one based indexing is followed.
3 Comments
Walter Roberson
on 8 Dec 2022
find will never return 0. It can return empty but assignment using empty index is permitted.
You do not show us what the error is.
See Also
Categories
Find more on Matrix Indexing 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!