-
Notifications
You must be signed in to change notification settings - Fork 94
sinh
Ryzom Core Wiki edited this page Jul 8, 2024
·
4 revisions
title: Sinh description: published: true date: 2023-03-16T23:11:46.984Z tags: editor: markdown dateCreated: 2023-03-16T22:29:40.821Z
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
.