<p class="Head1"><help:link Id="66397">Funkce Tan [Runtime]</help:link></p>
<p class="Paragraph">Vrátí tangens úhlu. Úhel bude vrácen v radiánech.</p>
</help:to-be-embedded>
<p class="Paragraph">Na základě úhlu Alfa funkce Tan vypočítá poměr délky protilehlé odvěsny k délce přilehlé odvěsny v pravoúhlém trojúhelníku.</p>
<p class="Paragraph">Stupně lze převést na radiány vynásobením hodnoty ve stupních hodnotou Pi/180. Radiány lze převést na stupně vynásobením hodnoty v radiánech hodnotou 180/Pi.</p>
<p class="Paragraph">hodnota ve stupních=(hodnota v radiánech*180)/Pi</p>
<p class="Paragraph">hodnota v radiánech=(hodnota ve stupních*Pi)/180</p>
<p class="Paragraph">Pi je přibližně rovno 3,141593.</p>
<p class="P2">Příklad:</p>
<p class="PropText">REM In this example, the following entry is possible for a right-angled triangle:</p>
<p class="PropText">REM The side opposite the angle and the angle (in degrees) to calculate the length of the side adjacent to the angle:</p>
<p class="PropText">Sub ExampleTangens</p>
<p class="PropText">REM Pi = 3.1415926 is a predefined constant</p>
<p class="PropText">Dim d1 as Double</p>
<p class="PropText">Dim dAlpha as Double</p>
<p class="PropText">d1 = InputBox$ ("Enter the length of the side opposite the angle: ","opposite")</p>
<p class="PropText">dAlpha = InputBox$ ("Enter the Alpha angle (in degrees): ","Alpha")</p>
<p class="PropText">Print "the length of the side adjacent the angle is"; (d1 / tan (dAlpha * Pi / 180))</p>