Complex.Sinh(Complex) 方法 
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回指定复数的双曲正弦值。
public:
 static System::Numerics::Complex Sinh(System::Numerics::Complex value);
	public static System.Numerics.Complex Sinh(System.Numerics.Complex value);
	static member Sinh : System.Numerics.Complex -> System.Numerics.Complex
	Public Shared Function Sinh (value As Complex) As Complex
	参数
- value
 - Complex
 
复数。
返回
              value的双曲正弦值。
注解
复数 Sinh 方法对应于实数的 Math.Sinh 方法。
              Sinh 方法将复数的双曲正弦值计算为 a + bix + yi,其中:
- 
              
x$\sinh a \times \cos b$ - 
              
y是 $\cosh a \times \sin b$