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!