how can i change seabed color in acoustic channel

1 view (last 30 days)
hello,
I am plotting an acoustic channel for transmission loss, but rock and bed color is blue or similar high color in color bar. it must be black or brown. how can i change it to black or brown color? Can anyone guide me?
thank you.

Answers (1)

Image Analyst
Image Analyst on 20 Oct 2021
% Plot in black
plot(x, signal, 'k-', 'LineWidth', 2);
% Or to plot in brown
brown = [96, 57, 19] / 255;
plot(x, signal, '-', 'Color', brown, 'LineWidth', 2);
  8 Comments
mo so
mo so on 20 Oct 2021
Thanks for your help. I changed range of color and type of cmap. but floor is same max color and it has very bad color. In act, the floor must be min color and be clear as a topography. But it is the same color as the environment!!
Image Analyst
Image Analyst on 20 Oct 2021
No - that's not the image I need. I need the gray scale image, not the pseudocolored image as a screenshot.

Sign in to comment.

Categories

Find more on Display Image in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!