support 发表于 2023-2-8 14:41:53

MathSin( )正弦【数学篇-MQL4函数】

double MathSin( double value)
返回指定角的正弦。

参数:
value   -   弧度角测量。

示例:

double pi=3.1415926535;
double x, y;
x=pi/2;
y=MathSin(x);
Print("MathSin(",x,") = ",y);
y=MathCos(x);
Print("MathCos(",x,") = ",y);
//输入数据: MathSin(1.5708)=1
//      MathCos(1.5708)=0

onlyyou 发表于 2023-2-22 11:10:32

谢谢美女分享好东西:loveliness:

醉红尘灬残月 发表于 2024-1-16 11:30:14

分享都值得点赞
页: [1]
查看完整版本: MathSin( )正弦【数学篇-MQL4函数】