Function Prototype
/* Vector Hyperbolic Sine */
/* Type: simple */
/* Input arrays: 1 Options: 0 Output arrays: 1 */
/* Inputs: real */
/* Options: none */
/* Outputs: sinh */
int ti_sinh_start(TI_REAL const *options);
int ti_sinh(int size,
TI_REAL const *const *inputs,
TI_REAL const *options,
TI_REAL *const *outputs);
Description
This documentation is still a work in progress. It has omissions, and it probably has errors too. If you see any issues, or have any general feedback, please get in touch.
Vector Hyperbolic Sine calculates the Trigonometric hyperbolic sine of each element in the input array.
$$sinh_{t} = \sinh{input_{t}}$$
This is sometimes useful as a building block to more complex functions.
See Also
References
Example Usage
Calling From C
/* Example usage of Vector Hyperbolic Sine */
/* Assuming that 'input' is a pre-loaded array of size 'in_size'. */
TI_REAL *inputs[] = {input};
TI_REAL options[] = {}; /* No options */
TI_REAL *outputs[1]; /* sinh */
/* Determine how large the output size is for our options. */
const int out_size = in_size - ti_sinh_start(options);
/* Allocate memory for output. */
outputs[0] = malloc(sizeof(TI_REAL) * out_size); assert(outputs[0] != 0); /* sinh */
/* Run the actual calculation. */
const int ret = ti_sinh(in_size, inputs, options, outputs);
assert(ret == TI_OKAY);
Calling From Lua (with Tulip Chart bindings)
-- Example usage of Vector Hyperbolic Sine
sinh = ti.sinh(input)
Example Calculation
date | input | sinh |
---|---|---|
2005-11-01 | 0.20 | 0.20 |
2005-11-02 | 0.30 | 0.31 |
2005-11-03 | 0.40 | 0.41 |
2005-11-04 | 0.30 | 0.31 |
2005-11-07 | 0.50 | 0.52 |
2005-11-08 | 0.70 | 0.76 |
2005-11-09 | 0.75 | 0.82 |
2005-11-10 | 0.90 | 1.03 |
2005-11-11 | 0.90 | 1.03 |
2005-11-14 | 1.00 | 1.18 |
2005-11-15 | 1.00 | 1.18 |
2005-11-16 | 0.20 | 0.20 |
2005-11-17 | 0.10 | 0.10 |
2005-11-18 | -0.10 | -0.10 |
2005-11-21 | -0.50 | -0.52 |
Chart
Other Indicators
Previous indicator: Vector Sine
Next indicator: Simple Moving Average
Random indicator: Absolute Price Oscillator
Copyright © 2016-2024 Tulip Charts LLC. All Rights Reserved.