blob: 682461a1ea1d59b03f0929f8916ca7b00385ce23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
clc
//
//
//
//Variable declaration
A=50/1.4 //Amplitude which is A=(50f/1.4*W**2)
Amax=50 //Max Amplitude which is Amax=(50f/W**2)
//Calculations
Rat=A/Amax
//Result
printf("\n The Value of A/Amax is %0.2f ",Rat)
|