Why values get changed while doing indexing?
显示 更早的评论
Hello everyone,
My code is for collocating data of two satellites. Therefore at first I have checked the index where date of Satellite 1 is equal to date of Satellite 2. Later I started the loop.
for i = 1 : length(Files_list)
ind_1 = find(Sat1_date(i) == Sat2_date);
% other lines from this code...
Find_index = Data(ind_1,:) % at this point my values change
end
Data is:

But Find_index returns:
2.0170 0.0060 0.0040 0.0040 0.0250 0.0397 0.1320
Why is it happening like this?
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Time Series Objects 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!