Function Prototype
/* Vector Sine */
/* Type: simple */
/* Input arrays: 1 Options: 0 Output arrays: 1 */
/* Inputs: real */
/* Options: none */
/* Outputs: sin */
int ti_sin_start(TI_REAL const *options);
int ti_sin(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 Sine calculates the Trigonometric sine of each element in the input array.
$$sin_{t} = \sin{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 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]; /* sin */
/* Determine how large the output size is for our options. */
const int out_size = in_size - ti_sin_start(options);
/* Allocate memory for output. */
outputs[0] = malloc(sizeof(TI_REAL) * out_size); assert(outputs[0] != 0); /* sin */
/* Run the actual calculation. */
const int ret = ti_sin(in_size, inputs, options, outputs);
assert(ret == TI_OKAY);
Calling From Lua (with Tulip Chart bindings)
-- Example usage of Vector Sine
sin = ti.sin(input)
Example Calculation
date | input | sin |
---|---|---|
2005-11-01 | 81.59 | -0.09 |
2005-11-02 | 81.06 | -0.58 |
2005-11-03 | 82.87 | 0.93 |
2005-11-04 | 83.00 | 0.97 |
2005-11-07 | 83.61 | 0.94 |
2005-11-08 | 83.15 | 1.00 |
2005-11-09 | 82.84 | 0.92 |
2005-11-10 | 83.99 | 0.74 |
2005-11-11 | 84.55 | 0.27 |
2005-11-14 | 84.36 | 0.45 |
2005-11-15 | 85.53 | -0.65 |
2005-11-16 | 86.54 | -0.99 |
2005-11-17 | 86.89 | -0.88 |
2005-11-18 | 87.77 | -0.19 |
2005-11-21 | 87.29 | -0.63 |
Chart
Other Indicators
Previous indicator: Relative Strength Index
Next indicator: Vector Hyperbolic Sine
Random indicator: Bollinger Bands
Copyright © 2016-2024 Tulip Charts LLC. All Rights Reserved.