Code for muting seismic traces
조회 수: 3 (최근 30일)
이전 댓글 표시
Hi guys, is there any code for muting seismic traces? I mean top mute and bottom mute.I want to pich times in every trace and the convert all the amplitudes of smaller times to zero. some codes do this interactively by clicking on the imag

e.the image is related to ZPLOT software.
댓글 수: 3
Image Analyst
2013년 9월 24일
편집: Image Analyst
2013년 9월 24일
Attach a screenshot, code, or data using the paper clip icon.
Image Analyst
2013년 9월 24일
What form is the data in? A 2D array? A 1D array? What does "Mute" mean to you?
답변 (1개)
Image Analyst
2013년 9월 24일
Tell us why
mutedSignal = signal;
mutedSignal(abs(signal)>threshold) = 0;
won't work.
댓글 수: 0
참고 항목
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!