Plotting solution of equation

2 visualizaciones (últimos 30 días)
mm99
mm99 el 29 de Oct. de 2019
Editada: mm99 el 20 de En. de 2020
Hi!
Thanks in adcance.

Respuestas (1)

darova
darova el 29 de Oct. de 2019
Experiment!
d = 1e-3; % plate thickness [m]
h = d/2;
ct = 2.26 * 1e-3 / 1e-6; % transverse wave speed for aluminium[m/s]
omega = linspace(10e6,15e6,10);
k = (0:100)*40;
cla
hold on
for i = 1:length(omega)
w = sin(sqrt((omega(i).^2/ct.^2)-k.^2).*h);
plot(k,w,'color',rand(1,3))
text(k(1),w(1),num2str(i))
end
hold off

Categorías

Más información sobre Audio Processing Algorithm Design en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by