getGraphValues: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (WIP → Stub) |
Lou Montana (talk | contribs) (Add example) |
||
Line 1: | Line 1: | ||
{{Command|= | |||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
Line 18: | Line 18: | ||
| [[getGraphValues]] <nowiki>[[graphMinX, graphMaxX, graphMinY, graphMaxY, valueCount, randomOffset], x1, y1, x2, y2, ... xn, yn]</nowiki> |Syntax= | | [[getGraphValues]] <nowiki>[[graphMinX, graphMaxX, graphMinY, graphMaxY, valueCount, randomOffset], x1, y1, x2, y2, ... xn, yn]</nowiki> |Syntax= | ||
|p1= | |p1= graphMinX: [[Number]] - minimum x-axis value | ||
|p2= | |p2= graphMaxX: [[Number]] - maximum x-axis value | ||
|p3=graphMinY: | |p3= graphMinY: [[Number]] - minimum y-axis value | ||
|p4= | |p4= graphMaxY: [[Number]] - maximum y-axis value | ||
|p5= | |p5= valueCount: [[Number]] - number of values the returned array should have | ||
| | |p7=randomOffset: [[Number]] - random range for returned y value | ||
| | |p8=x1..n: [[Number]] - n<sup>th</sup> x value | ||
| | |p9=y1..n: [[Number]] - n<sup>th</sup> y value | ||
| | | [[Array]] of [[Array]] of [[Number]]s - to format [arrayOfYvalues, arrayOfXvalues] |Return Value= | ||
____________________________________________________________________________________________ | |||
| [[ | |x1= <code>[[private]] _minX = 0; | ||
[[private]] _maxX = 10; | |||
[[private]] _minY = 0; | |||
[[private]] _maxY = 100; | |||
[[private]] _count = 11; | |||
[[private]] _random = 0; | |||
| | [[getGraphValues]] [ | ||
[_minX, _maxX, _minY, _maxY, _count, _random], | |||
0, 5, | |||
1, 10, | |||
2, 100, | |||
3, 50, | |||
4, 30, | |||
5, 100, | |||
6, 10, | |||
7, 50, | |||
8, 75, | |||
9, 100, | |||
10, 100 | |||
]; | |||
{{codecomment|/* | |||
returns [[0.05, 0.1, 1, 0.5, 0.3, 1, 0.1, 0.5, 0.75, 1, 1], [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]] | |||
supposedly [array of 1-based Y values, array of X values] | |||
<nowiki>*</nowiki>/}}</code> |Example 1= | |||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| [[decayGraphValues]] |See Also= | | [[decayGraphValues]] |See Also= | ||
Line 49: | Line 69: | ||
<dl class="command_description"> | <dl class="command_description"> | ||
<!-- BEGIN Note Section --> | <!-- BEGIN Note Section --> | ||
<!-- END Note Section --> | <!-- END Note Section --> | ||
</dl> | </dl> |
Revision as of 23:37, 5 January 2020
Description
- Description:
- Generate graph y - coordinates of all input values within specific x and y range.
- Groups:
- Uncategorised
Syntax
- Syntax:
- getGraphValues [[graphMinX, graphMaxX, graphMinY, graphMaxY, valueCount, randomOffset], x1, y1, x2, y2, ... xn, yn]
- Parameters:
- graphMinX: Number - minimum x-axis value
- graphMaxX: Number - maximum x-axis value
- graphMinY: Number - minimum y-axis value
- graphMaxY: Number - maximum y-axis value
- valueCount: Number - number of values the returned array should have
- randomOffset: Number - random range for returned y value
- x1..n: Number - nth x value
- y1..n: Number - nth y value
- Return Value:
- Array of Array of Numbers - to format [arrayOfYvalues, arrayOfXvalues]
Examples
- Example 1:
private _minX = 0; private _maxX = 10; private _minY = 0; private _maxY = 100; private _count = 11; private _random = 0; getGraphValues [ [_minX, _maxX, _minY, _maxY, _count, _random], 0, 5, 1, 10, 2, 100, 3, 50, 4, 30, 5, 100, 6, 10, 7, 50, 8, 75, 9, 100, 10, 100 ]; /* returns [[0.05, 0.1, 1, 0.5, 0.3, 1, 0.1, 0.5, 0.75, 1, 1], [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]] supposedly [array of 1-based Y values, array of X values] */
Additional Information
- See also:
- decayGraphValues
Notes
-
Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note