-
Notifications
You must be signed in to change notification settings - Fork 94
sinh
Ryzom Core Wiki edited this page Mar 13, 2023
·
4 revisions
title: Sinh description: published: true date: 2023-03-12T22:41:29.502Z tags: editor: markdown dateCreated: 2023-03-12T22:20:01.469Z
The sinh native AI script function returns the hyperbolic sine of an input value.
(y: f)sinh(x: f)
- x (float): The input value.
- y (float): The result of the hyperbolic sine operation.
(y)sinh(2.0f);
This example code calculates the hyperbolic sine of 2.0 and stores the result in the variable y
.