>> sin(30) % sine of argument in radians
ans =
-0.9880
>> sin(pi/6)
ans =
0.5000
Sine of argument in degrees
>> sind(30) % sine of argument in degrees
ans =
0.5000
Inverse Sine
>> %Inverse Sine (to get answer in radians)
>> asin(0.5)
ans =
0.5236 %Answer in Radians
>> % To convert the previous answer from radians to degrees
>> rad2deg(ans)
ans =
30.0000
>> %Inverse Sine (to get answer in degrees)
>> asind(0.5)
ans =
30.0000
Sine Hyperbolic and Inverse Hyperbolic Functions
>> % Sine Hyperbolic Function (argument in radians)
>> sinh(pi/6)
ans =
0.5479
>> % Sine Inverse Hyperbolic Function (argument in radians)
>> asinh(ans)
ans =
0.5236
Cosine and Tangent Functions
>> cos(pi/6)
ans =
0.8660
>> tan(pi/6)
ans =
0.5774
ISI Admissions 2020 to the Degree and Diploma Programmes, and Junior Research Fellowships in Indian Statistical Institute (ISI) Indian Statistical Institute (ISI) invites applications from eligible candidates for admissions (ISI Admissions 2020) to UG / [Read More …]
X to the Power 0 We know that any number x raised to the power 0 is equal to 1 always. Where, the number x is not equal to 0. Why is x to the [Read More …]
Can you guess the Largest Number at the end of the following series? 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, … , 100, 101, … 1000, …, 9999999, 10000000, 10000001, 10000002, 10000003, [Read More …]
Be the first to comment