blob: a9443e48590e6797bff17dc17384f9edb2ac2a44 (
plain)
1
2
3
4
5
6
7
8
|
clc
clear
//input data
f=120 //lowest frequency
//calculation
x=3*f // the next higher frequency is thrice the lowest frequency
//output
printf("the next higher frequency where the antinode is formed is at %3.3f Hz",x)
|