當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ complex Sin()用法及代碼示例


我們的任務是找出複數的 sin() 函數的工作原理。複數的 sin( ) 函數存在於複數頭文件中,這意味著為了計算 sin() 的值,我們需要在代碼中添加複數頭文件。在數學中,此函數用於計算具有複數的 sin 值。

用法

sin() 函數的語法是 -

sin(z);

參數

參數 z 可以是任何複數,該參數在 sin() 函數的定義中定義,這使得該參數成為必需。

返回類型

此函數返回 sin() 的複數值,因為它包含複數。

Input− 罪 (0,1)

Output- (0,1.1752)

Input− 罪 (4,6)

Output- (-152.65, -131.848)

示例

#include<iostream.h>
#include<complex.h>
Using namespace std;
int main( ){
   Complex<double> x(2,1);
   Cout<< “ The sin of “ << x << “ = “ << sin(x) << endl;
   return 0;
}

輸出

如果我們運行上麵的代碼,它將生成以下輸出

The sin of (2,1) = (1.403,-0.4890)

示例

#include<iostream.h>
#include<complex.h>
Using namespace std;
int main( ){
   Complex<double> x(3, 9);
   Cout<< “ The sin of “ << x << “ = “ << sin(x) << endl;
   Return 0;
}

輸出

如果我們運行上麵的代碼,它將生成以下輸出

The sin of (3, 9) = (571.75,-4010.996)

相關用法


注:本文由純淨天空篩選整理自Sunidhi Bansal大神的英文原創作品 Sin() function for complex number in C++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。