how can i change seabed color in acoustic channel

1 vue (au cours des 30 derniers jours)
mo so
mo so le 20 Oct 2021
Commenté : Image Analyst le 20 Oct 2021
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.

Réponses (1)

Image Analyst
Image Analyst le 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 commentaires
mo so
mo so le 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 le 20 Oct 2021
No - that's not the image I need. I need the gray scale image, not the pseudocolored image as a screenshot.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Display Image dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by