How to plot absorption of sound waves in seawater and boric acid?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Junaid Qadir
el 6 de Oct. de 2019
Comentada: Junaid Qadir
el 8 de Oct. de 2019
Please provide a Matlab code for the figure below.
0 comentarios
Respuesta aceptada
Stephan
el 6 de Oct. de 2019
% Produce some data
x = logspace(-1,2);
y1 = exp(x);
y2 = (exp(x)./exp(y1));
% Plot lo double log-scale
loglog(x,y1,'--k','LineWidth',2)
hold on
loglog(x,y2,'-k','LineWidth',2)
hold off
% Change look
a = gca;
grid on
xlabel('Frquency - kHz')
ylabel('Attenuation - dB/km')
legend({'Saltwater', 'MgSO_{4}'}, 'Interpreter', 'tex', 'Location', 'southeast')
a.GridLineStyle = '--';
a.MinorGridLineStyle = '--';
a.GridColor = 'k';
a.MinorGridColor = 'k';
a.GridAlpha = 1;
a.MinorGridAlpha = 1;
6 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Continuous Waveforms en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!