blob: a6cdd40d675a21db9a4f109e609bdd34ca08634f (
plain)
1
2
3
4
5
6
7
|
//Example 16.8
lambda=10;//Wavelength (m)
T=5;//Time period (s)
v_w=lambda/T;//Wave velocity (m/s)
printf('Wave velocity = %0.2f m/s',v_w)
//Openstax - College Physics
//Download for free at http://cnx.org/content/col11406/latest
|