Flip every other file in a GPR matrix
2 ビュー (過去 30 日間)
古いコメントを表示
Hi all, I am an archaeology student learning matlab and need some help flipping some ground penetrating radar data (GSSI). We collect data in two directions. One line S->N, next line N->S. So need to figure out how to flip every other line.
Here is the code i've been messing around with so far. Dist is our y-axis data values. I keep getting an unequal expression error.
%Reverse Odd dist=-dist %alternatively could use fliplr? if radarfile=['../22-05-2018/FILE____1' '../22-05-2018/FILE____3' '../22-05-2018/FILE____5' '../22-05- 2018/FILE____7' '../22-05-2018/FILE____9', num2str(num),'.DZT']; end
any help would be greatly appreciated
0 件のコメント
採用された回答
Ameer Hamza
2018 年 5 月 28 日
編集済み: Ameer Hamza
2018 年 5 月 28 日
dist(1:2:end, :) = fliplr(dist(1:2:end, :))
dist(1:2:end, :) = dist(1:2:end, end:-1:1) % both have same result
this will flip row 1,3,5,... and
dist(2:2:end, :) = fliplr(dist(2:2:end, :))
dist(2:2:end, :) = dist(2:2:end, end:-1:1) % both have same result
will flip row 2,4,6,...
2 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!