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,...
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!