synthesizer 3.3.1 → 3.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (35) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +4 -0
  3. data/examples/{metronome.rb → audio_input_metronome.rb} +8 -2
  4. data/examples/{step_editor.rb → audio_input_step_editor.rb} +10 -2
  5. data/examples/filter_band_pass.rb +73 -0
  6. data/examples/{lpf.rb → filter_serial.rb} +9 -2
  7. data/examples/oscillator_pan.rb +70 -0
  8. data/examples/{formant_vocoder.rb → oscillator_source_formant_vocoder.rb} +9 -2
  9. data/examples/{formant_vocoder_sweep.rb → oscillator_source_formant_vocoder_sweep.rb} +10 -3
  10. data/examples/{sync.rb → oscillator_sync.rb} +11 -3
  11. data/examples/oscillator_unison.rb +64 -0
  12. data/examples/oscillator_volume.rb +70 -0
  13. data/examples/{mono.rb → synth_mono.rb} +10 -2
  14. data/examples/{poly.rb → synth_poly.rb} +10 -2
  15. data/{examples → jupyter}/adsr.ipynb +20 -17
  16. data/jupyter/curves.ipynb +103 -0
  17. data/jupyter/shapes.ipynb +111 -0
  18. data/lib/audio_stream/audio_input_metronome.rb +1 -1
  19. data/lib/synthesizer/modulation/adsr.rb +12 -11
  20. data/lib/synthesizer/modulation/glide.rb +2 -2
  21. data/lib/synthesizer/modulation/lfo.rb +8 -8
  22. data/lib/synthesizer/oscillator.rb +9 -9
  23. data/lib/synthesizer/oscillator_source/formant_vocoder.rb +3 -2
  24. data/lib/synthesizer/shape.rb +4 -4
  25. data/lib/synthesizer/version.rb +1 -1
  26. data/samples/cinema.rb +730 -0
  27. data/samples/cinema_drum.wav +0 -0
  28. data/samples/daijoubu.rb +811 -0
  29. data/samples/daijoubu_drum.wav +0 -0
  30. data/samples/kira_power.rb +987 -0
  31. data/samples/kira_power_drum.wav +0 -0
  32. data/synthesizer.gemspec +1 -1
  33. metadata +29 -19
  34. data/examples/curves.ipynb +0 -105
  35. data/examples/shapes.ipynb +0 -116
Binary file
data/synthesizer.gemspec CHANGED
@@ -30,5 +30,5 @@ Gem::Specification.new do |spec|
30
30
  spec.add_development_dependency "rake", "~> 12.0"
31
31
  spec.add_development_dependency "minitest", "~> 5.0"
32
32
 
33
- spec.add_dependency "audio_stream", ">= 3.3.3"
33
+ spec.add_dependency "audio_stream", ">= 3.4.0"
34
34
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: synthesizer
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.3.1
4
+ version: 3.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yoshida Tetsuya
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-12-04 00:00:00.000000000 Z
11
+ date: 2021-12-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -58,14 +58,14 @@ dependencies:
58
58
  requirements:
59
59
  - - ">="
60
60
  - !ruby/object:Gem::Version
61
- version: 3.3.3
61
+ version: 3.4.0
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - ">="
67
67
  - !ruby/object:Gem::Version
68
- version: 3.3.3
68
+ version: 3.4.0
69
69
  description: Synthesizer implemented in Ruby.
70
70
  email:
71
71
  - yoshida.eth0@gmail.com
@@ -81,17 +81,21 @@ files:
81
81
  - Rakefile
82
82
  - bin/console
83
83
  - bin/setup
84
- - examples/adsr.ipynb
85
- - examples/curves.ipynb
86
- - examples/formant_vocoder.rb
87
- - examples/formant_vocoder_sweep.rb
88
- - examples/lpf.rb
89
- - examples/metronome.rb
90
- - examples/mono.rb
91
- - examples/poly.rb
92
- - examples/shapes.ipynb
93
- - examples/step_editor.rb
94
- - examples/sync.rb
84
+ - examples/audio_input_metronome.rb
85
+ - examples/audio_input_step_editor.rb
86
+ - examples/filter_band_pass.rb
87
+ - examples/filter_serial.rb
88
+ - examples/oscillator_pan.rb
89
+ - examples/oscillator_source_formant_vocoder.rb
90
+ - examples/oscillator_source_formant_vocoder_sweep.rb
91
+ - examples/oscillator_sync.rb
92
+ - examples/oscillator_unison.rb
93
+ - examples/oscillator_volume.rb
94
+ - examples/synth_mono.rb
95
+ - examples/synth_poly.rb
96
+ - jupyter/adsr.ipynb
97
+ - jupyter/curves.ipynb
98
+ - jupyter/shapes.ipynb
95
99
  - lib/audio_stream/audio_input_metronome.rb
96
100
  - lib/audio_stream/audio_input_step_editor.rb
97
101
  - lib/audio_stream/audio_input_synth.rb
@@ -133,6 +137,12 @@ files:
133
137
  - lib/synthesizer/unison.rb
134
138
  - lib/synthesizer/utils.rb
135
139
  - lib/synthesizer/version.rb
140
+ - samples/cinema.rb
141
+ - samples/cinema_drum.wav
142
+ - samples/daijoubu.rb
143
+ - samples/daijoubu_drum.wav
144
+ - samples/kira_power.rb
145
+ - samples/kira_power_drum.wav
136
146
  - synthesizer.gemspec
137
147
  homepage: https://github.com/yoshida-eth0/ruby-synthesizer
138
148
  licenses:
@@ -141,7 +151,7 @@ metadata:
141
151
  homepage_uri: https://github.com/yoshida-eth0/ruby-synthesizer
142
152
  source_code_uri: https://github.com/yoshida-eth0/ruby-synthesizer
143
153
  changelog_uri: https://github.com/yoshida-eth0/ruby-synthesizer
144
- post_install_message:
154
+ post_install_message:
145
155
  rdoc_options: []
146
156
  require_paths:
147
157
  - lib
@@ -156,8 +166,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
156
166
  - !ruby/object:Gem::Version
157
167
  version: '0'
158
168
  requirements: []
159
- rubygems_version: 3.0.3
160
- signing_key:
169
+ rubygems_version: 3.2.3
170
+ signing_key:
161
171
  specification_version: 4
162
172
  summary: Synthesizer implemented in Ruby.
163
173
  test_files: []
@@ -1,105 +0,0 @@
1
- {
2
- "cells": [
3
- {
4
- "cell_type": "code",
5
- "execution_count": 1,
6
- "metadata": {},
7
- "outputs": [
8
- {
9
- "data": {
10
- "text/html": [
11
- "\n",
12
- " <script>\n",
13
- " requirejs.config({paths: { 'plotly': ['https://cdn.plot.ly/plotly-latest.min'] }})\n",
14
- " </script>\n",
15
- "\n",
16
- "\n",
17
- "<div id=\"580ec476-272b-4fc0-9f5a-ab6b96838f43\" style=\"height: 100%; width: 100%;\"></div>\n",
18
- "\n",
19
- "<script>\n",
20
- " require(['plotly'], function(Plotly) { \n",
21
- "Plotly.newPlot(\n",
22
- " '580ec476-272b-4fc0-9f5a-ab6b96838f43',\n",
23
- " [{\"x\":[0.0,0.01,0.02,0.03,0.04,0.05,0.06,0.07,0.08,0.09,0.1,0.11,0.12,0.13,0.14,0.15,0.16,0.17,0.18,0.19,0.2,0.21,0.22,0.23,0.24,0.25,0.26,0.27,0.28,0.29,0.3,0.31,0.32,0.33,0.34,0.35000000000000003,0.36,0.37,0.38,0.39,0.4,0.41000000000000003,0.42,0.43,0.44,0.45,0.46,0.47000000000000003,0.48,0.49,0.5,0.51,0.52,0.53,0.54,0.55,0.56,0.5700000000000001,0.58,0.59,0.6,0.61,0.62,0.63,0.64,0.65,0.66,0.67,0.68,0.6900000000000001,0.7000000000000001,0.71,0.72,0.73,0.74,0.75,0.76,0.77,0.78,0.79,0.8,0.81,0.8200000000000001,0.8300000000000001,0.84,0.85,0.86,0.87,0.88,0.89,0.9,0.91,0.92,0.93,0.9400000000000001,0.9500000000000001,0.96,0.97,0.98,0.99],\"y\":[0.01,0.02,0.03,0.04,0.05,0.060000000000000005,0.07,0.08,0.09,0.09999999999999999,0.10999999999999999,0.11999999999999998,0.12999999999999998,0.13999999999999999,0.15,0.16,0.17,0.18000000000000002,0.19000000000000003,0.20000000000000004,0.21000000000000005,0.22000000000000006,0.23000000000000007,0.24000000000000007,0.25000000000000006,0.26000000000000006,0.2700000000000001,0.2800000000000001,0.2900000000000001,0.3000000000000001,0.3100000000000001,0.3200000000000001,0.3300000000000001,0.34000000000000014,0.35000000000000014,0.36000000000000015,0.37000000000000016,0.38000000000000017,0.3900000000000002,0.4000000000000002,0.4100000000000002,0.4200000000000002,0.4300000000000002,0.4400000000000002,0.45000000000000023,0.46000000000000024,0.47000000000000025,0.48000000000000026,0.49000000000000027,0.5000000000000002,0.5100000000000002,0.5200000000000002,0.5300000000000002,0.5400000000000003,0.5500000000000003,0.5600000000000003,0.5700000000000003,0.5800000000000003,0.5900000000000003,0.6000000000000003,0.6100000000000003,0.6200000000000003,0.6300000000000003,0.6400000000000003,0.6500000000000004,0.6600000000000004,0.6700000000000004,0.6800000000000004,0.6900000000000004,0.7000000000000004,0.7100000000000004,0.7200000000000004,0.7300000000000004,0.7400000000000004,0.7500000000000004,0.7600000000000005,0.7700000000000005,0.7800000000000005,0.7900000000000005,0.8000000000000005,0.8100000000000005,0.8200000000000005,0.8300000000000005,0.8400000000000005,0.8500000000000005,0.8600000000000005,0.8700000000000006,0.8800000000000006,0.8900000000000006,0.9000000000000006,0.9100000000000006,0.9200000000000006,0.9300000000000006,0.9400000000000006,0.9500000000000006,0.9600000000000006,0.9700000000000006,0.9800000000000006,0.9900000000000007,1.0000000000000007],\"name\":\"Straight\"},{\"x\":[0.0,0.01,0.02,0.03,0.04,0.05,0.06,0.07,0.08,0.09,0.1,0.11,0.12,0.13,0.14,0.15,0.16,0.17,0.18,0.19,0.2,0.21,0.22,0.23,0.24,0.25,0.26,0.27,0.28,0.29,0.3,0.31,0.32,0.33,0.34,0.35000000000000003,0.36,0.37,0.38,0.39,0.4,0.41000000000000003,0.42,0.43,0.44,0.45,0.46,0.47000000000000003,0.48,0.49,0.5,0.51,0.52,0.53,0.54,0.55,0.56,0.5700000000000001,0.58,0.59,0.6,0.61,0.62,0.63,0.64,0.65,0.66,0.67,0.68,0.6900000000000001,0.7000000000000001,0.71,0.72,0.73,0.74,0.75,0.76,0.77,0.78,0.79,0.8,0.81,0.8200000000000001,0.8300000000000001,0.84,0.85,0.86,0.87,0.88,0.89,0.9,0.91,0.92,0.93,0.9400000000000001,0.9500000000000001,0.96,0.97,0.98,0.99],\"y\":[0.0001,0.0004,0.0009,0.0016,0.0025000000000000005,0.0036000000000000008,0.004900000000000001,0.0064,0.0081,0.009999999999999998,0.012099999999999998,0.014399999999999996,0.016899999999999995,0.019599999999999996,0.0225,0.0256,0.028900000000000006,0.032400000000000005,0.036100000000000014,0.040000000000000015,0.04410000000000002,0.048400000000000026,0.05290000000000003,0.05760000000000003,0.06250000000000003,0.06760000000000004,0.07290000000000003,0.07840000000000004,0.08410000000000005,0.09000000000000007,0.09610000000000007,0.10240000000000007,0.10890000000000008,0.11560000000000009,0.1225000000000001,0.1296000000000001,0.13690000000000013,0.14440000000000014,0.15210000000000015,0.16000000000000014,0.16810000000000017,0.17640000000000017,0.18490000000000018,0.1936000000000002,0.2025000000000002,0.21160000000000023,0.22090000000000024,0.23040000000000024,0.24010000000000026,0.2500000000000002,0.2601000000000002,0.27040000000000025,0.28090000000000026,0.2916000000000003,0.30250000000000027,0.3136000000000003,0.3249000000000003,0.33640000000000037,0.34810000000000035,0.3600000000000004,0.3721000000000004,0.3844000000000004,0.3969000000000004,0.40960000000000046,0.4225000000000005,0.4356000000000005,0.4489000000000005,0.46240000000000053,0.4761000000000005,0.49000000000000055,0.5041000000000005,0.5184000000000006,0.5329000000000006,0.5476000000000006,0.5625000000000007,0.5776000000000007,0.5929000000000008,0.6084000000000007,0.6241000000000008,0.6400000000000008,0.6561000000000008,0.6724000000000008,0.6889000000000008,0.7056000000000009,0.7225000000000009,0.7396000000000009,0.7569000000000009,0.774400000000001,0.792100000000001,0.810000000000001,0.8281000000000011,0.846400000000001,0.8649000000000011,0.8836000000000012,0.9025000000000012,0.9216000000000012,0.9409000000000013,0.9604000000000013,0.9801000000000013,1.0000000000000013],\"name\":\"EaseIn\"},{\"x\":[0.0,0.01,0.02,0.03,0.04,0.05,0.06,0.07,0.08,0.09,0.1,0.11,0.12,0.13,0.14,0.15,0.16,0.17,0.18,0.19,0.2,0.21,0.22,0.23,0.24,0.25,0.26,0.27,0.28,0.29,0.3,0.31,0.32,0.33,0.34,0.35000000000000003,0.36,0.37,0.38,0.39,0.4,0.41000000000000003,0.42,0.43,0.44,0.45,0.46,0.47000000000000003,0.48,0.49,0.5,0.51,0.52,0.53,0.54,0.55,0.56,0.5700000000000001,0.58,0.59,0.6,0.61,0.62,0.63,0.64,0.65,0.66,0.67,0.68,0.6900000000000001,0.7000000000000001,0.71,0.72,0.73,0.74,0.75,0.76,0.77,0.78,0.79,0.8,0.81,0.8200000000000001,0.8300000000000001,0.84,0.85,0.86,0.87,0.88,0.89,0.9,0.91,0.92,0.93,0.9400000000000001,0.9500000000000001,0.96,0.97,0.98,0.99],\"y\":[0.0199,0.0396,0.0591,0.0784,0.0975,0.1164,0.1351,0.1536,0.1719,0.18999999999999997,0.2079,0.22559999999999997,0.24309999999999998,0.26039999999999996,0.2775,0.2944,0.31110000000000004,0.32760000000000006,0.34390000000000004,0.3600000000000001,0.37590000000000007,0.3916000000000001,0.40710000000000013,0.4224000000000001,0.4375000000000001,0.45240000000000014,0.4671000000000001,0.48160000000000014,0.4959000000000001,0.5100000000000001,0.5239000000000001,0.5376000000000002,0.5511000000000001,0.5644000000000002,0.5775000000000002,0.5904000000000003,0.6031000000000002,0.6156000000000003,0.6279000000000002,0.6400000000000002,0.6519000000000003,0.6636000000000003,0.6751000000000003,0.6864000000000002,0.6975000000000002,0.7084000000000003,0.7191000000000003,0.7296000000000002,0.7399000000000003,0.7500000000000002,0.7599000000000002,0.7696000000000003,0.7791000000000002,0.7884000000000002,0.7975000000000002,0.8064000000000002,0.8151000000000003,0.8236000000000002,0.8319000000000002,0.8400000000000003,0.8479000000000002,0.8556000000000002,0.8631000000000002,0.8704000000000003,0.8775000000000003,0.8844000000000003,0.8911000000000002,0.8976000000000003,0.9039000000000003,0.9100000000000003,0.9159000000000003,0.9216000000000002,0.9271000000000003,0.9324000000000002,0.9375000000000002,0.9424000000000002,0.9471000000000002,0.9516000000000002,0.9559000000000002,0.9600000000000002,0.9639000000000002,0.9676000000000002,0.9711000000000002,0.9744000000000002,0.9775000000000001,0.9804000000000002,0.9831000000000002,0.9856000000000001,0.9879000000000001,0.9900000000000001,0.9919000000000001,0.9936000000000001,0.9951000000000001,0.9964000000000001,0.9975,0.9984000000000001,0.9991,0.9996,0.9999,1.0],\"name\":\"EaseOut\"}],\n",
24
- " {},\n",
25
- " {\"linkText\":\"Export to plot.ly\",\"showLink\":true}\n",
26
- ")\n",
27
- "\n",
28
- "window.addEventListener('resize', function() {\n",
29
- " Plotly.Plots.resize(document.getElementById('580ec476-272b-4fc0-9f5a-ab6b96838f43'))\n",
30
- "})\n",
31
- " }) \n",
32
- "</script>"
33
- ],
34
- "text/plain": [
35
- "#<Plotly::Offline::HTML:0x00007ffe401d02b8 @id=\"580ec476-272b-4fc0-9f5a-ab6b96838f43\", @data=[{:x=>[0.0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35000000000000003, 0.36, 0.37, 0.38, 0.39, 0.4, 0.41000000000000003, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47000000000000003, 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.5700000000000001, 0.58, 0.59, 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.6900000000000001, 0.7000000000000001, 0.71, 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.8200000000000001, 0.8300000000000001, 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.9400000000000001, 0.9500000000000001, 0.96, 0.97, 0.98, 0.99], :y=>[0.01, 0.02, 0.03, 0.04, 0.05, 0.060000000000000005, 0.07, 0.08, 0.09, 0.09999999999999999, 0.10999999999999999, 0.11999999999999998, 0.12999999999999998, 0.13999999999999999, 0.15, 0.16, 0.17, 0.18000000000000002, 0.19000000000000003, 0.20000000000000004, 0.21000000000000005, 0.22000000000000006, 0.23000000000000007, 0.24000000000000007, 0.25000000000000006, 0.26000000000000006, 0.2700000000000001, 0.2800000000000001, 0.2900000000000001, 0.3000000000000001, 0.3100000000000001, 0.3200000000000001, 0.3300000000000001, 0.34000000000000014, 0.35000000000000014, 0.36000000000000015, 0.37000000000000016, 0.38000000000000017, 0.3900000000000002, 0.4000000000000002, 0.4100000000000002, 0.4200000000000002, 0.4300000000000002, 0.4400000000000002, 0.45000000000000023, 0.46000000000000024, 0.47000000000000025, 0.48000000000000026, 0.49000000000000027, 0.5000000000000002, 0.5100000000000002, 0.5200000000000002, 0.5300000000000002, 0.5400000000000003, 0.5500000000000003, 0.5600000000000003, 0.5700000000000003, 0.5800000000000003, 0.5900000000000003, 0.6000000000000003, 0.6100000000000003, 0.6200000000000003, 0.6300000000000003, 0.6400000000000003, 0.6500000000000004, 0.6600000000000004, 0.6700000000000004, 0.6800000000000004, 0.6900000000000004, 0.7000000000000004, 0.7100000000000004, 0.7200000000000004, 0.7300000000000004, 0.7400000000000004, 0.7500000000000004, 0.7600000000000005, 0.7700000000000005, 0.7800000000000005, 0.7900000000000005, 0.8000000000000005, 0.8100000000000005, 0.8200000000000005, 0.8300000000000005, 0.8400000000000005, 0.8500000000000005, 0.8600000000000005, 0.8700000000000006, 0.8800000000000006, 0.8900000000000006, 0.9000000000000006, 0.9100000000000006, 0.9200000000000006, 0.9300000000000006, 0.9400000000000006, 0.9500000000000006, 0.9600000000000006, 0.9700000000000006, 0.9800000000000006, 0.9900000000000007, 1.0000000000000007], :name=>\"Straight\"}, {:x=>[0.0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35000000000000003, 0.36, 0.37, 0.38, 0.39, 0.4, 0.41000000000000003, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47000000000000003, 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.5700000000000001, 0.58, 0.59, 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.6900000000000001, 0.7000000000000001, 0.71, 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.8200000000000001, 0.8300000000000001, 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.9400000000000001, 0.9500000000000001, 0.96, 0.97, 0.98, 0.99], :y=>[0.0001, 0.0004, 0.0009, 0.0016, 0.0025000000000000005, 0.0036000000000000008, 0.004900000000000001, 0.0064, 0.0081, 0.009999999999999998, 0.012099999999999998, 0.014399999999999996, 0.016899999999999995, 0.019599999999999996, 0.0225, 0.0256, 0.028900000000000006, 0.032400000000000005, 0.036100000000000014, 0.040000000000000015, 0.04410000000000002, 0.048400000000000026, 0.05290000000000003, 0.05760000000000003, 0.06250000000000003, 0.06760000000000004, 0.07290000000000003, 0.07840000000000004, 0.08410000000000005, 0.09000000000000007, 0.09610000000000007, 0.10240000000000007, 0.10890000000000008, 0.11560000000000009, 0.1225000000000001, 0.1296000000000001, 0.13690000000000013, 0.14440000000000014, 0.15210000000000015, 0.16000000000000014, 0.16810000000000017, 0.17640000000000017, 0.18490000000000018, 0.1936000000000002, 0.2025000000000002, 0.21160000000000023, 0.22090000000000024, 0.23040000000000024, 0.24010000000000026, 0.2500000000000002, 0.2601000000000002, 0.27040000000000025, 0.28090000000000026, 0.2916000000000003, 0.30250000000000027, 0.3136000000000003, 0.3249000000000003, 0.33640000000000037, 0.34810000000000035, 0.3600000000000004, 0.3721000000000004, 0.3844000000000004, 0.3969000000000004, 0.40960000000000046, 0.4225000000000005, 0.4356000000000005, 0.4489000000000005, 0.46240000000000053, 0.4761000000000005, 0.49000000000000055, 0.5041000000000005, 0.5184000000000006, 0.5329000000000006, 0.5476000000000006, 0.5625000000000007, 0.5776000000000007, 0.5929000000000008, 0.6084000000000007, 0.6241000000000008, 0.6400000000000008, 0.6561000000000008, 0.6724000000000008, 0.6889000000000008, 0.7056000000000009, 0.7225000000000009, 0.7396000000000009, 0.7569000000000009, 0.774400000000001, 0.792100000000001, 0.810000000000001, 0.8281000000000011, 0.846400000000001, 0.8649000000000011, 0.8836000000000012, 0.9025000000000012, 0.9216000000000012, 0.9409000000000013, 0.9604000000000013, 0.9801000000000013, 1.0000000000000013], :name=>\"EaseIn\"}, {:x=>[0.0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35000000000000003, 0.36, 0.37, 0.38, 0.39, 0.4, 0.41000000000000003, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47000000000000003, 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.5700000000000001, 0.58, 0.59, 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.6900000000000001, 0.7000000000000001, 0.71, 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.8200000000000001, 0.8300000000000001, 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.9400000000000001, 0.9500000000000001, 0.96, 0.97, 0.98, 0.99], :y=>[0.0199, 0.0396, 0.0591, 0.0784, 0.0975, 0.1164, 0.1351, 0.1536, 0.1719, 0.18999999999999997, 0.2079, 0.22559999999999997, 0.24309999999999998, 0.26039999999999996, 0.2775, 0.2944, 0.31110000000000004, 0.32760000000000006, 0.34390000000000004, 0.3600000000000001, 0.37590000000000007, 0.3916000000000001, 0.40710000000000013, 0.4224000000000001, 0.4375000000000001, 0.45240000000000014, 0.4671000000000001, 0.48160000000000014, 0.4959000000000001, 0.5100000000000001, 0.5239000000000001, 0.5376000000000002, 0.5511000000000001, 0.5644000000000002, 0.5775000000000002, 0.5904000000000003, 0.6031000000000002, 0.6156000000000003, 0.6279000000000002, 0.6400000000000002, 0.6519000000000003, 0.6636000000000003, 0.6751000000000003, 0.6864000000000002, 0.6975000000000002, 0.7084000000000003, 0.7191000000000003, 0.7296000000000002, 0.7399000000000003, 0.7500000000000002, 0.7599000000000002, 0.7696000000000003, 0.7791000000000002, 0.7884000000000002, 0.7975000000000002, 0.8064000000000002, 0.8151000000000003, 0.8236000000000002, 0.8319000000000002, 0.8400000000000003, 0.8479000000000002, 0.8556000000000002, 0.8631000000000002, 0.8704000000000003, 0.8775000000000003, 0.8844000000000003, 0.8911000000000002, 0.8976000000000003, 0.9039000000000003, 0.9100000000000003, 0.9159000000000003, 0.9216000000000002, 0.9271000000000003, 0.9324000000000002, 0.9375000000000002, 0.9424000000000002, 0.9471000000000002, 0.9516000000000002, 0.9559000000000002, 0.9600000000000002, 0.9639000000000002, 0.9676000000000002, 0.9711000000000002, 0.9744000000000002, 0.9775000000000001, 0.9804000000000002, 0.9831000000000002, 0.9856000000000001, 0.9879000000000001, 0.9900000000000001, 0.9919000000000001, 0.9936000000000001, 0.9951000000000001, 0.9964000000000001, 0.9975, 0.9984000000000001, 0.9991, 0.9996, 0.9999, 1.0], :name=>\"EaseOut\"}], @layout={}, @config={:linkText=>\"Export to plot.ly\", :showLink=>true}, @embedded=true>"
36
- ]
37
- },
38
- "metadata": {},
39
- "output_type": "display_data"
40
- },
41
- {
42
- "data": {
43
- "text/plain": [
44
- "#<CZTop::Socket::PUB:0x7ffe3df8edc0 last_endpoint=\"tcp://127.0.0.1:52424\">"
45
- ]
46
- },
47
- "execution_count": 1,
48
- "metadata": {},
49
- "output_type": "execute_result"
50
- }
51
- ],
52
- "source": [
53
- "$LOAD_PATH << File.dirname(__FILE__) + \"/../lib\"\n",
54
- "require 'synthesizer'\n",
55
- "\n",
56
- "include Synthesizer\n",
57
- "\n",
58
- "xs = []\n",
59
- "ys1 = []\n",
60
- "ys2 = []\n",
61
- "ys3 = []\n",
62
- "\n",
63
- "pos = ShapePos.new\n",
64
- "step = 0.01\n",
65
- "\n",
66
- "(1/step).to_i.times {|i|\n",
67
- " phase = pos.next(step)\n",
68
- " xs << i * step\n",
69
- " ys1 << Modulation::Curve::Straight[phase]\n",
70
- " ys2 << Modulation::Curve::EaseIn[phase]\n",
71
- " ys3 << Modulation::Curve::EaseOut[phase]\n",
72
- "}\n",
73
- "\n",
74
- "traces = [\n",
75
- " {x: xs, y: ys1, name: \"Straight\"},\n",
76
- " {x: xs, y: ys2, name: \"EaseIn\"},\n",
77
- " {x: xs, y: ys3, name: \"EaseOut\"},\n",
78
- "]\n",
79
- "Plotly::Plot.new(data: traces).show\n"
80
- ]
81
- },
82
- {
83
- "cell_type": "code",
84
- "execution_count": null,
85
- "metadata": {},
86
- "outputs": [],
87
- "source": []
88
- }
89
- ],
90
- "metadata": {
91
- "kernelspec": {
92
- "display_name": "Ruby 2.7.0",
93
- "language": "ruby",
94
- "name": "ruby"
95
- },
96
- "language_info": {
97
- "file_extension": ".rb",
98
- "mimetype": "application/x-ruby",
99
- "name": "ruby",
100
- "version": "2.6.3"
101
- }
102
- },
103
- "nbformat": 4,
104
- "nbformat_minor": 2
105
- }
@@ -1,116 +0,0 @@
1
- {
2
- "cells": [
3
- {
4
- "cell_type": "code",
5
- "execution_count": 2,
6
- "metadata": {},
7
- "outputs": [
8
- {
9
- "data": {
10
- "text/html": [
11
- "\n",
12
- " <script>\n",
13
- " requirejs.config({paths: { 'plotly': ['https://cdn.plot.ly/plotly-latest.min'] }})\n",
14
- " </script>\n",
15
- "\n",
16
- "\n",
17
- "<div id=\"e5d9f583-7308-4775-b496-c3848bcb3384\" style=\"height: 100%; width: 100%;\"></div>\n",
18
- "\n",
19
- "<script>\n",
20
- " require(['plotly'], function(Plotly) { \n",
21
- "Plotly.newPlot(\n",
22
- " 'e5d9f583-7308-4775-b496-c3848bcb3384',\n",
23
- " [{\"x\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299],\"y\":[0.06264832417874369,0.1250505236945281,0.18696144082725336,0.2481378479437379,0.3083394030591003,0.3673295940613788,0.42487666788983836,0.4807545410165316,0.5347436876541295,0.5866320022005455,0.6362156325320928,0.6832997808714386,0.7276994690840093,0.7692402653962486,0.8077589696806922,0.8431042546155973,0.8751372602002243,0.9037321392901133,0.9287765520091285,0.9501721070958866,0.9678347484506664,0.9816950853641806,0.991698665130853,0.9978061869755915,0.9999936564536084,0.9982524797167028,0.992589497275665,0.9830269571261583,0.969602427343661,0.9523686484908523,0.9313933264172864,0.9067588662653752,0.878562048727684,0.8469136498274179,0.811938005715857,0.773772524196507,0.7325671448950293,0.688483750195759,0.6416955292590559,0.5923862976180484,0.5407497750278535,0.48698882440436786,0.43131465484258347,0.3739459918455135,0.31510821802362127,0.2550324876406651,0.19395481848461218,0.13211516463136846,0.06975647374412641,0.007123732611892247,-0.055536995323039316,-0.11797953666742966,-0.17995857521140174,-0.24123061569515172,-0.30155494042174913,-0.360694554957803,-0.41841711920665464,-0.4744958601962072,-0.5287104629953566,-0.5808479362589023,-0.6307034490004961,-0.6780811353062289,-0.7227948638273908,-0.76466896902933,-0.8035389413235665,-0.8392520733718676,-0.8716680600231558,-0.9006595495263083,-0.9261126438533073,-0.9479273461671313,-0.9660179536764466,-0.980313394333687,-0.9907575060537568,-0.9973092573563939,-0.999942908565361,-0.9986481129311697,-0.9934299572800558,-0.9843089420295122,-0.9713209006488905,-0.9545168588814844,-0.9339628342811637,-0.9097395768511175,-0.8819422518036468,-0.8506800656873403,-0.8160758373504615,-0.7782655154260834,-0.7373976442346157,-0.6936327802020255,-0.6471428610864344,-0.598110530491217,-0.546728420318345,-0.49319839398099236,-0.43773075334857514,-0.3805434125398613,-0.32186104181006747,-0.26191418489530965,-0.20093835328207885,-0.13917310096006763,-0.07686108329331846,-0.014247103707104703,0.04842284806422373,0.11090256239000881,0.1729465770199531,0.23431114142458104,0.2947551744109026,0.3540412112511445,0.4119363366035666,0.4682130995602444,0.5226504072268886,0.5750343933241125,0.625159258397714,0.672828078337052,0.7178535780251124,0.7600588670808597,0.7992781348033668,0.835357301587532,0.8681546242521777,0.8975412529023916,0.9234017371383938,0.9456344796221863,0.9641521352200848,0.9788819541530244,0.9897660678065149,0.9967617160773984,0.9998414153642309,0.9989930665413147,0.9942200024921843,0.9855409750158026,0.9729900811569105,0.9566166292499501,0.9364849452028347,0.912674119781613,0.8852776978888562,0.8544033110565005,0.820172254596957,0.7827190110737137,0.7421907219635737,0.6987466095861797,0.6525573515718878,0.6038044103254797,0.5526793201200546,0.4993829346218631,0.4441246378022972,0.38712152133712957,0.3285975317247181,0.268782590473852,0.20791169081776084,0.1462239745029878,0.08396179228010156,0.021369751787304794,-0.041306243432537484,-0.10381996000604198,-0.16592580209926466,-0.22737977628295955,-0.28794045010251645,-0.3473699005866874,-0.4054346489686911,-0.4619065779475002,-0.5165638278857074,-0.5691916684230731,-0.6195833420814962,-0.6675408765471458,-0.7128758624385838,-0.7554101935052605,-0.794976766348396,-0.831420136915287,-0.8645971311878672,-0.8943774076663356,-0.9206439694380514,-0.9432936238199242,-0.9622373877685281,-0.9774008374652197,-0.9887244007028437,-0.996163590925345,-0.9996891820008162,-0.9992873230413597,-0.9949595928186703,-0.9867229935615612,-0.9746098841597979,-0.9586678530366614,-0.9389595311896851,-0.9155623461340605,-0.888568217715394,-0.8580831969868614,-0.8242270495695003,-0.7871327851324659,-0.7469461348417854,-0.7038249788305359,-0.6579387259397156,-0.6094676481666236,-0.5586021724354711,-0.5055421324726126,-0.45049598372555716,-0.39367998441007296,-0.33531734590276796,-0.27563735581700344,-0.214874477207262,-0.15326742744091962,-0.0910582403562046,-0.028491315390848104,0.03418754258292727,0.09673208894492658,0.15889660674110198,0.2204368720246652,0.2811111133316561,0.34068096152151495,0.39891238625104486,0.4555766154026677,0.5104510338548328,0.5633200580636295,0.6139759830196267,0.6622197982525507,0.707861969677975,0.7507231842144073,0.7906350542454174,0.8274407791592056,0.8609957613666404,0.8911681743776332,0.917839480704066,0.9409048975545964,0.9602738084917902,0.9758701194343005,0.9876325576054895,0.9955149122540178,0.9994862162006888,0.9995308674983127,0.995648690726625,0.9878549376814562,0.9761802274554408,0.9606704261456717,0.9413864666608904,0.9184041093361243,0.8918136442952469,0.861719536730774,0.8282400164944765,0.7915066136111754,0.7516636415405281,0.7088676302169064,0.6632867110947601,0.6150999566154255,0.564496676690392,0.5116756749649229,0.4568444677839033,0.400218468928372,0.34202014332561553,0.2824781330576296,0.22182635910157106,0.16030310233116643,0.09815006738952108,0.035611433111064225,-0.02706710677679009,-0.08963930890350012,-0.15185934766461173,-0.2134827809897259,-0.2742675106749982,-0.3339747335073663,-0.39236987944383867,-0.44922353316006025,-0.5043123353476607,-0.5574198602195314,-0.6083374657755762,-0.656865113488495,-0.7028121541893949,-0.7459980770656558,-0.7862532188285695,-0.8234194302645867,-0.8573506975515852,-0.8879137158991414,-0.9149884132592281,-0.9384684220497923,-0.9582614970380094,-0.9742898777414704,-0.9864905939235369,-0.9948157129826994,-0.9992325282640006,-0.9997236875527291,-0.9962872612455639,-0.9889367499313508,-0.9777010313517301,-0.9626242469499838,-0.9437656284538246,-0.9211992651734164,-0.8950138129288354,-0.8653121457505171,-0.8322109517210116,-0.7958402745458943,-0.7563430026547986,-0.7138743078397833,-0.6686010356363735,-0.6207010498423408,-0.5703625337493137,-0.5177832508325304,-0.4631697678031738,-0.4067366430756862,-0.3487055838383405,-0.2893045750385841,-0.22876698370518198,-0.16733064212587995,-0.1052369134825877,-0.042729743614784835],\"name\":\"Sine\"},{\"x\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299],\"y\":[0.01995464852607709,0.03990929705215418,0.05986394557823127,0.07981859410430836,0.09977324263038545,0.11972789115646254,0.13968253968253963,0.15963718820861672,0.1795918367346938,0.1995464852607709,0.219501133786848,0.23945578231292508,0.25941043083900217,0.27936507936507926,0.29931972789115635,0.31927437641723344,0.33922902494331053,0.3591836734693876,0.3791383219954647,0.3990929705215418,0.4190476190476189,0.439002267573696,0.45895691609977307,0.47891156462585016,0.49886621315192725,0.5188208616780043,0.5387755102040814,0.5587301587301585,0.5786848072562356,0.5986394557823127,0.6185941043083898,0.6385487528344669,0.658503401360544,0.6784580498866211,0.6984126984126982,0.7183673469387752,0.7383219954648523,0.7582766439909294,0.7782312925170065,0.7981859410430836,0.8181405895691607,0.8380952380952378,0.8580498866213149,0.878004535147392,0.897959183673469,0.9179138321995461,0.9378684807256232,0.9578231292517003,0.9777777777777774,0.9977324263038545,-0.982312925170068,-0.9623582766439913,-0.9424036281179138,-0.9224489795918371,-0.9024943310657596,-0.882539682539683,-0.8625850340136054,-0.8426303854875288,-0.8226757369614512,-0.8027210884353746,-0.7827664399092971,-0.7628117913832204,-0.7428571428571429,-0.7229024943310662,-0.7029478458049887,-0.6829931972789121,-0.6630385487528345,-0.6430839002267579,-0.6231292517006803,-0.6031746031746037,-0.5832199546485262,-0.5632653061224495,-0.543310657596372,-0.5233560090702953,-0.5034013605442178,-0.48344671201814116,-0.4634920634920636,-0.443537414965987,-0.42358276643990944,-0.4036281179138328,-0.38367346938775526,-0.3637188208616786,-0.3437641723356011,-0.32380952380952444,-0.3038548752834469,-0.28390022675737026,-0.2639455782312927,-0.24399092970521608,-0.22403628117913854,-0.2040816326530619,-0.18412698412698436,-0.16417233560090772,-0.14421768707483018,-0.12426303854875353,-0.104308390022676,-0.08435374149659935,-0.06439909297052182,-0.044444444444445175,-0.02448979591836764,-0.004535147392290995,0.01541950113378654,0.03537414965986363,0.05532879818594072,0.07528344671201781,0.0952380952380949,0.11519274376417199,0.13514739229024908,0.15510204081632617,0.17505668934240326,0.19501133786848035,0.21496598639455744,0.23492063492063453,0.2548752834467116,0.2748299319727887,0.2947845804988658,0.3147392290249429,0.33469387755102,0.35464852607709707,0.37460317460317416,0.39455782312925125,0.41451247165532834,0.43446712018140543,0.4544217687074825,0.4743764172335596,0.4943310657596367,0.5142857142857138,0.5342403628117909,0.554195011337868,0.5741496598639451,0.5941043083900222,0.6140589569160992,0.6340136054421763,0.6539682539682534,0.6739229024943305,0.6938775510204076,0.7138321995464847,0.7337868480725618,0.7537414965986389,0.773696145124716,0.793650793650793,0.8136054421768701,0.8335600907029472,0.8535147392290243,0.8734693877551014,0.8934240362811785,0.9133786848072556,0.9333333333333327,0.9532879818594098,0.9732426303854869,0.993197278911564,-0.986848072562359,-0.9668934240362823,-0.9469387755102048,-0.9269841269841272,-0.9070294784580506,-0.887074829931974,-0.8671201814058964,-0.8471655328798189,-0.8272108843537422,-0.8072562358276656,-0.7873015873015881,-0.7673469387755105,-0.7473922902494339,-0.7274376417233572,-0.7074829931972797,-0.6875283446712022,-0.6675736961451255,-0.6476190476190489,-0.6276643990929713,-0.6077097505668938,-0.5877551020408172,-0.5678004535147405,-0.547845804988663,-0.5278911564625854,-0.5079365079365088,-0.48798185941043215,-0.4680272108843546,-0.4480725623582771,-0.42811791383220044,-0.4081632653061238,-0.38820861678004626,-0.3682539682539687,-0.3482993197278921,-0.32834467120181543,-0.3083900226757379,-0.28843537414966036,-0.2684807256235837,-0.24852607709750707,-0.22857142857142954,-0.208616780045352,-0.18866213151927536,-0.1687074829931987,-0.14875283446712118,-0.12879818594104364,-0.108843537414967,-0.08888888888889035,-0.06893424036281282,-0.04897959183673528,-0.029024943310658635,-0.00907029478458199,0.010884353741495545,0.03083900226757308,0.05079365079365061,0.07074829931972815,0.09070294784580568,0.11065759637188322,0.13061224489796075,0.15056689342403828,0.17052154195011582,0.19047619047619335,0.2104308390022709,0.23038548752834842,0.25034013605442595,0.2702947845805035,0.290249433106581,0.31020408163265856,0.3301587301587361,0.3501133786848136,0.37006802721089116,0.3900226757369687,0.40997732426304623,0.42993197278912376,0.4498866213152013,0.46984126984127883,0.48979591836735636,0.5097505668934339,0.5297052154195114,0.549659863945589,0.5696145124716665,0.589569160997744,0.6095238095238216,0.6294784580498991,0.6494331065759766,0.6693877551020542,0.6893424036281317,0.7092970521542092,0.7292517006802868,0.7492063492063643,0.7691609977324418,0.7891156462585194,0.8090702947845969,0.8290249433106744,0.848979591836752,0.8689342403628295,0.888888888888907,0.9088435374149846,0.9287981859410621,0.9487528344671396,0.9687074829932172,0.9886621315192947,-0.9913832199546277,-0.9714285714285502,-0.9514739229024727,-0.9315192743763951,-0.9115646258503176,-0.8916099773242401,-0.8716553287981625,-0.851700680272085,-0.8317460317460075,-0.8117913832199299,-0.7918367346938524,-0.7718820861677749,-0.7519274376416973,-0.7319727891156198,-0.7120181405895423,-0.6920634920634647,-0.6721088435373872,-0.6521541950113097,-0.6321995464852321,-0.6122448979591546,-0.5922902494330771,-0.5723356009069995,-0.552380952380922,-0.5324263038548445,-0.5124716553287669,-0.4925170068026894,-0.47256235827661186,-0.4526077097505343,-0.4326530612244568,-0.41269841269837926,-0.3927437641723017,-0.3727891156462242,-0.35283446712014666,-0.3328798185940691,-0.3129251700679916,-0.29297052154191405,-0.2730158730158365,-0.253061224489759,-0.23310657596368145,-0.21315192743760392,-0.19319727891152638,-0.17324263038544885,-0.15328798185937131,-0.13333333333329378,-0.11337868480721625,-0.09342403628113871,-0.07346938775506118,-0.05351473922898364,-0.03356009070290611,-0.013605442176828575],\"name\":\"Sawtooth\"},{\"x\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299],\"y\":[1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0],\"name\":\"Square\"},{\"x\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299],\"y\":[0.039909297052154194,0.07981859410430839,0.11972789115646258,0.15963718820861678,0.19954648526077096,0.23945578231292514,0.2793650793650793,0.3192743764172335,0.3591836734693877,0.39909297052154186,0.43900226757369604,0.4789115646258502,0.5188208616780045,0.5587301587301586,0.5986394557823128,0.638548752834467,0.6784580498866212,0.7183673469387754,0.7582766439909295,0.7981859410430837,0.8380952380952379,0.8780045351473921,0.9179138321995463,0.9578231292517004,0.9977324263038546,0.9623582766439911,0.9224489795918369,0.8825396825396827,0.8426303854875286,0.8027210884353744,0.7628117913832202,0.722902494331066,0.6829931972789118,0.6430839002267577,0.6031746031746035,0.5632653061224493,0.5233560090702951,0.48344671201814093,0.44353741496598675,0.4036281179138326,0.3637188208616784,0.3238095238095242,0.28390022675737003,0.24399092970521585,0.20408163265306167,0.1641723356009075,0.12426303854875331,0.08435374149659913,0.04444444444444495,0.004535147392290773,-0.03537414965986363,-0.07528344671201781,-0.11519274376417199,-0.15510204081632617,-0.19501133786848035,-0.23492063492063453,-0.2748299319727887,-0.3147392290249429,-0.35464852607709707,-0.39455782312925125,-0.43446712018140543,-0.4743764172335596,-0.5142857142857138,-0.554195011337868,-0.5941043083900222,-0.6340136054421763,-0.6739229024943305,-0.7138321995464847,-0.7537414965986389,-0.793650793650793,-0.8335600907029472,-0.8734693877551014,-0.9133786848072556,-0.9532879818594098,-0.993197278911564,-0.9668934240362819,-0.9269841269841277,-0.8870748299319735,-0.8471655328798193,-0.8072562358276651,-0.767346938775511,-0.7274376417233568,-0.6875283446712026,-0.6476190476190484,-0.6077097505668942,-0.5678004535147401,-0.5278911564625859,-0.4879818594104317,-0.4480725623582775,-0.40816326530612335,-0.36825396825396917,-0.328344671201815,-0.2884353741496608,-0.24852607709750663,-0.20861678004535245,-0.16870748299319827,-0.12879818594104409,-0.0888888888888899,-0.048979591836735725,-0.009070294784581545,0.03083900226757308,0.07074829931972726,0.11065759637188144,0.15056689342403562,0.1904761904761898,0.23038548752834398,0.27029478458049816,0.31020408163265234,0.3501133786848065,0.3900226757369607,0.4299319727891149,0.46984126984126906,0.5097505668934232,0.5496598639455774,0.5895691609977316,0.6294784580498858,0.66938775510204,0.7092970521541941,0.7492063492063483,0.7891156462585025,0.8290249433106567,0.8689342403628109,0.908843537414965,0.9487528344671192,0.9886621315192734,0.9714285714285724,0.9315192743764182,0.8916099773242641,0.8517006802721099,0.8117913832199557,0.7718820861678015,0.7319727891156473,0.6920634920634932,0.652154195011339,0.6122448979591848,0.5723356009070306,0.5324263038548764,0.49251700680272226,0.4526077097505681,0.4126984126984139,0.3727891156462597,0.33287981859410554,0.29297052154195136,0.2530612244897972,0.213151927437643,0.17324263038548882,0.13333333333333464,0.09342403628118046,0.053514739229026276,0.013605442176872096,-0.026303854875282084,-0.06621315192743626,-0.10612244897959044,-0.14603174603174462,-0.1859410430838988,-0.22585034013605298,-0.26575963718820717,-0.30566893424036135,-0.3455782312925155,-0.3854875283446697,-0.4253968253968239,-0.46530612244897807,-0.5052154195011322,-0.5451247165532864,-0.5850340136054406,-0.6249433106575948,-0.664852607709749,-0.7047619047619031,-0.7446712018140573,-0.7845804988662115,-0.8244897959183657,-0.8643990929705199,-0.904308390022674,-0.9442176870748282,-0.9841269841269824,-0.9759637188208634,-0.9360544217687092,-0.896145124716555,-0.8562358276644009,-0.8163265306122467,-0.7764172335600925,-0.7365079365079383,-0.6965986394557842,-0.65668934240363,-0.6167800453514758,-0.5768707482993216,-0.5369614512471674,-0.49705215419501325,-0.45714285714285907,-0.4172335600907049,-0.3773242630385507,-0.33741496598639653,-0.29750566893424235,-0.25759637188208817,-0.217687074829934,-0.1777777777777798,-0.13786848072562563,-0.09795918367347145,-0.05804988662131727,-0.01814058956916309,0.02176870748299109,0.06167800453514616,0.10158730158730123,0.1414965986394563,0.18140589569161136,0.22131519274376643,0.2612244897959215,0.30113378684807657,0.34104308390023164,0.3809523809523867,0.4208616780045418,0.46077097505669684,0.5006802721088519,0.540589569161007,0.580498866213162,0.6204081632653171,0.6603174603174722,0.7002267573696273,0.7401360544217823,0.7800453514739374,0.8199546485260925,0.8598639455782475,0.8997732426304026,0.9396825396825577,0.9795918367347127,0.9804988662131322,0.9405895691609771,0.9006802721088221,0.860770975056667,0.8208616780045119,0.7809523809523569,0.7410430839002018,0.7011337868480467,0.6612244897958917,0.6213151927437366,0.5814058956915815,0.5414965986394265,0.5015873015872714,0.4616780045351163,0.42176870748296125,0.3818594104308062,0.3419501133786511,0.30204081632649604,0.262131519274341,0.2222222222221859,0.18231292517003084,0.14240362811787577,0.1024943310657207,0.06258503401356563,0.022675736961410564,-0.017233560090744504,-0.05714285714289957,-0.09705215419505464,-0.1369614512472097,-0.17687074829936478,-0.21678004535151985,-0.2566893424036749,-0.29659863945583,-0.33650793650798505,-0.3764172335601401,-0.4163265306122952,-0.45623582766445026,-0.4961451247166053,-0.5360544217687604,-0.5759637188209155,-0.6158730158730705,-0.6557823129252256,-0.6956916099773807,-0.7356009070295357,-0.7755102040816908,-0.8154195011338459,-0.8553287981860009,-0.895238095238156,-0.9351473922903111,-0.9750566893424661,-0.9850340136053788,-0.9451247165532237,-0.9052154195010687,-0.8653061224489136,-0.8253968253967585,-0.7854875283446034,-0.7455782312924484,-0.7056689342402933,-0.6657596371881382,-0.6258503401359832,-0.5859410430838281,-0.546031746031673,-0.506122448979518,-0.4662131519273629,-0.42630385487520783,-0.38639455782305276,-0.3464852607708977,-0.30657596371874263,-0.26666666666658756,-0.2267573696144325,-0.18684807256227742,-0.14693877551012235,-0.10702947845796729,-0.06712018140581222,-0.02721088435365715],\"name\":\"Triangle\"},{\"x\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299],\"y\":[-0.9800453514739229,-0.9600907029478458,-0.9401360544217687,-0.9201814058956916,-0.9002267573696145,-0.8802721088435375,-0.8603174603174604,-0.8403628117913833,-0.8204081632653062,-0.8004535147392291,-0.780498866213152,-0.7605442176870749,-0.7405895691609978,-0.7206349206349207,-0.7006802721088436,-0.6807256235827666,-0.6607709750566895,-0.6408163265306124,-0.6208616780045353,-0.6009070294784582,-0.5809523809523811,-0.560997732426304,-0.5410430839002269,-0.5210884353741498,-0.5011337868480727,-0.48117913832199555,-0.46122448979591846,-0.44126984126984137,-0.4213151927437643,-0.4013605442176872,-0.3814058956916101,-0.361451247165533,-0.3414965986394559,-0.3215419501133788,-0.30158730158730174,-0.28163265306122465,-0.26167800453514756,-0.24172335600907047,-0.22176870748299338,-0.2018140589569163,-0.1818594104308392,-0.1619047619047621,-0.14195011337868502,-0.12199546485260793,-0.10204081632653084,-0.08208616780045375,-0.062131519274376656,-0.042176870748299566,-0.022222222222222476,-0.0022675736961453863,0.017687074829931815,0.037641723356008905,0.057596371882085995,0.07755102040816308,0.09750566893424018,0.11746031746031727,0.13741496598639436,0.15736961451247145,0.17732426303854854,0.19727891156462563,0.21723356009070272,0.2371882086167798,0.2571428571428569,0.277097505668934,0.2970521541950111,0.31700680272108817,0.33696145124716526,0.35691609977324235,0.37687074829931944,0.3968253968253965,0.4167800453514736,0.4367346938775507,0.4566893424036278,0.4766439909297049,0.496598639455782,0.5165532879818591,0.5365079365079362,0.5564625850340132,0.5764172335600903,0.5963718820861674,0.6163265306122445,0.6362811791383216,0.6562358276643987,0.6761904761904758,0.6961451247165529,0.71609977324263,0.7360544217687071,0.7560090702947841,0.7759637188208612,0.7959183673469383,0.8158730158730154,0.8358276643990925,0.8557823129251696,0.8757369614512467,0.8956916099773238,0.9156462585034009,0.935600907029478,0.955555555555555,0.9755102040816321,0.9954648526077092,-0.9845804988662135,-0.9646258503401364,-0.9446712018140593,-0.9247165532879822,-0.9047619047619051,-0.884807256235828,-0.8648526077097509,-0.8448979591836738,-0.8249433106575967,-0.8049886621315196,-0.7850340136054426,-0.7650793650793655,-0.7451247165532884,-0.7251700680272113,-0.7052154195011342,-0.6852607709750571,-0.66530612244898,-0.6453514739229029,-0.6253968253968258,-0.6054421768707487,-0.5854875283446717,-0.5655328798185946,-0.5455782312925175,-0.5256235827664404,-0.5056689342403633,-0.4857142857142862,-0.4657596371882091,-0.44580498866213203,-0.42585034013605494,-0.40589569160997785,-0.38594104308390076,-0.36598639455782367,-0.3460317460317466,-0.3260770975056695,-0.3061224489795924,-0.2861678004535153,-0.2662131519274382,-0.24625850340136113,-0.22630385487528404,-0.20634920634920695,-0.18639455782312986,-0.16643990929705277,-0.14648526077097568,-0.1265306122448986,-0.1065759637188215,-0.08662131519274441,-0.06666666666666732,-0.04671201814059023,-0.026757369614513138,-0.006802721088436048,0.013151927437641042,0.03310657596371813,0.05306122448979522,0.07301587301587231,0.0929705215419494,0.11292517006802649,0.13287981859410358,0.15283446712018067,0.17278911564625776,0.19274376417233485,0.21269841269841194,0.23265306122448903,0.2526077097505661,0.2725623582766432,0.2925170068027203,0.3124716553287974,0.3324263038548745,0.3523809523809516,0.37233560090702866,0.39229024943310575,0.41224489795918284,0.43219954648525993,0.452154195011337,0.4721088435374141,0.4920634920634912,0.5120181405895683,0.5319727891156454,0.5519274376417225,0.5718820861677996,0.5918367346938767,0.6117913832199537,0.6317460317460308,0.6517006802721079,0.671655328798185,0.6916099773242621,0.7115646258503392,0.7315192743764163,0.7514739229024934,0.7714285714285705,0.7913832199546476,0.8113378684807246,0.8312925170068017,0.8512471655328788,0.8712018140589559,0.891156462585033,0.9111111111111101,0.9310657596371872,0.9510204081632643,0.9709750566893414,0.9909297052154185,-0.9891156462585045,-0.9691609977324269,-0.9492063492063494,-0.9292517006802719,-0.9092970521541943,-0.8893424036281168,-0.8693877551020393,-0.8494331065759617,-0.8294784580498842,-0.8095238095238066,-0.7895691609977291,-0.7696145124716516,-0.749659863945574,-0.7297052154194965,-0.709750566893419,-0.6897959183673414,-0.6698412698412639,-0.6498866213151864,-0.6299319727891088,-0.6099773242630313,-0.5900226757369538,-0.5700680272108762,-0.5501133786847987,-0.5301587301587212,-0.5102040816326436,-0.4902494331065661,-0.47029478458048857,-0.45034013605441103,-0.4303854875283335,-0.41043083900225596,-0.39047619047617843,-0.3705215419501009,-0.35056689342402336,-0.33061224489794583,-0.3106575963718683,-0.29070294784579076,-0.2707482993197132,-0.2507936507936357,-0.23083900226755816,-0.21088435374148062,-0.1909297052154031,-0.17097505668932556,-0.15102040816324802,-0.1310657596371705,-0.11111111111109295,-0.09115646258501542,-0.07120181405893788,-0.05124716553286035,-0.031292517006782816,-0.011337868480705282,0.008616780045372252,0.028571428571449786,0.04852607709752732,0.06848072562360485,0.08843537414968239,0.10839002267575992,0.12834467120183746,0.148299319727915,0.16825396825399253,0.18820861678007006,0.2081632653061476,0.22811791383222513,0.24807256235830266,0.2680272108843802,0.28798185941045773,0.30793650793653526,0.3278911564626128,0.34784580498869033,0.36780045351476787,0.3877551020408454,0.40770975056692293,0.42766439909300047,0.447619047619078,0.46757369614515554,0.48752834467123307,0.5074829931973106,0.5274376417233881,0.5473922902494657,0.5673469387755432,0.5873015873016207,0.6072562358276983,0.6272108843537758,0.6471655328798533,0.6671201814059309,0.6870748299320084,0.707029478458086,0.7269841269841635,0.746938775510241,0.7668934240363185,0.7868480725623961,0.8068027210884736,0.8267573696145512,0.8467120181406287,0.8666666666667062,0.8866213151927838,0.9065759637188613,0.9265306122449388,0.9464852607710164,0.9664399092970939,0.9863945578231714],\"name\":\"RampUp\"},{\"x\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299],\"y\":[0.9800453514739229,0.9600907029478458,0.9401360544217687,0.9201814058956916,0.9002267573696145,0.8802721088435375,0.8603174603174604,0.8403628117913833,0.8204081632653062,0.8004535147392291,0.780498866213152,0.7605442176870749,0.7405895691609978,0.7206349206349207,0.7006802721088436,0.6807256235827666,0.6607709750566895,0.6408163265306124,0.6208616780045353,0.6009070294784582,0.5809523809523811,0.560997732426304,0.5410430839002269,0.5210884353741498,0.5011337868480727,0.48117913832199555,0.46122448979591846,0.44126984126984137,0.4213151927437643,0.4013605442176872,0.3814058956916101,0.361451247165533,0.3414965986394559,0.3215419501133788,0.30158730158730174,0.28163265306122465,0.26167800453514756,0.24172335600907047,0.22176870748299338,0.2018140589569163,0.1818594104308392,0.1619047619047621,0.14195011337868502,0.12199546485260793,0.10204081632653084,0.08208616780045375,0.062131519274376656,0.042176870748299566,0.022222222222222476,0.0022675736961453863,-0.017687074829931815,-0.037641723356008905,-0.057596371882085995,-0.07755102040816308,-0.09750566893424018,-0.11746031746031727,-0.13741496598639436,-0.15736961451247145,-0.17732426303854854,-0.19727891156462563,-0.21723356009070272,-0.2371882086167798,-0.2571428571428569,-0.277097505668934,-0.2970521541950111,-0.31700680272108817,-0.33696145124716526,-0.35691609977324235,-0.37687074829931944,-0.3968253968253965,-0.4167800453514736,-0.4367346938775507,-0.4566893424036278,-0.4766439909297049,-0.496598639455782,-0.5165532879818591,-0.5365079365079362,-0.5564625850340132,-0.5764172335600903,-0.5963718820861674,-0.6163265306122445,-0.6362811791383216,-0.6562358276643987,-0.6761904761904758,-0.6961451247165529,-0.71609977324263,-0.7360544217687071,-0.7560090702947841,-0.7759637188208612,-0.7959183673469383,-0.8158730158730154,-0.8358276643990925,-0.8557823129251696,-0.8757369614512467,-0.8956916099773238,-0.9156462585034009,-0.935600907029478,-0.955555555555555,-0.9755102040816321,-0.9954648526077092,0.9845804988662135,0.9646258503401364,0.9446712018140593,0.9247165532879822,0.9047619047619051,0.884807256235828,0.8648526077097509,0.8448979591836738,0.8249433106575967,0.8049886621315196,0.7850340136054426,0.7650793650793655,0.7451247165532884,0.7251700680272113,0.7052154195011342,0.6852607709750571,0.66530612244898,0.6453514739229029,0.6253968253968258,0.6054421768707487,0.5854875283446717,0.5655328798185946,0.5455782312925175,0.5256235827664404,0.5056689342403633,0.4857142857142862,0.4657596371882091,0.44580498866213203,0.42585034013605494,0.40589569160997785,0.38594104308390076,0.36598639455782367,0.3460317460317466,0.3260770975056695,0.3061224489795924,0.2861678004535153,0.2662131519274382,0.24625850340136113,0.22630385487528404,0.20634920634920695,0.18639455782312986,0.16643990929705277,0.14648526077097568,0.1265306122448986,0.1065759637188215,0.08662131519274441,0.06666666666666732,0.04671201814059023,0.026757369614513138,0.006802721088436048,-0.013151927437641042,-0.03310657596371813,-0.05306122448979522,-0.07301587301587231,-0.0929705215419494,-0.11292517006802649,-0.13287981859410358,-0.15283446712018067,-0.17278911564625776,-0.19274376417233485,-0.21269841269841194,-0.23265306122448903,-0.2526077097505661,-0.2725623582766432,-0.2925170068027203,-0.3124716553287974,-0.3324263038548745,-0.3523809523809516,-0.37233560090702866,-0.39229024943310575,-0.41224489795918284,-0.43219954648525993,-0.452154195011337,-0.4721088435374141,-0.4920634920634912,-0.5120181405895683,-0.5319727891156454,-0.5519274376417225,-0.5718820861677996,-0.5918367346938767,-0.6117913832199537,-0.6317460317460308,-0.6517006802721079,-0.671655328798185,-0.6916099773242621,-0.7115646258503392,-0.7315192743764163,-0.7514739229024934,-0.7714285714285705,-0.7913832199546476,-0.8113378684807246,-0.8312925170068017,-0.8512471655328788,-0.8712018140589559,-0.891156462585033,-0.9111111111111101,-0.9310657596371872,-0.9510204081632643,-0.9709750566893414,-0.9909297052154185,0.9891156462585045,0.9691609977324269,0.9492063492063494,0.9292517006802719,0.9092970521541943,0.8893424036281168,0.8693877551020393,0.8494331065759617,0.8294784580498842,0.8095238095238066,0.7895691609977291,0.7696145124716516,0.749659863945574,0.7297052154194965,0.709750566893419,0.6897959183673414,0.6698412698412639,0.6498866213151864,0.6299319727891088,0.6099773242630313,0.5900226757369538,0.5700680272108762,0.5501133786847987,0.5301587301587212,0.5102040816326436,0.4902494331065661,0.47029478458048857,0.45034013605441103,0.4303854875283335,0.41043083900225596,0.39047619047617843,0.3705215419501009,0.35056689342402336,0.33061224489794583,0.3106575963718683,0.29070294784579076,0.2707482993197132,0.2507936507936357,0.23083900226755816,0.21088435374148062,0.1909297052154031,0.17097505668932556,0.15102040816324802,0.1310657596371705,0.11111111111109295,0.09115646258501542,0.07120181405893788,0.05124716553286035,0.031292517006782816,0.011337868480705282,-0.008616780045372252,-0.028571428571449786,-0.04852607709752732,-0.06848072562360485,-0.08843537414968239,-0.10839002267575992,-0.12834467120183746,-0.148299319727915,-0.16825396825399253,-0.18820861678007006,-0.2081632653061476,-0.22811791383222513,-0.24807256235830266,-0.2680272108843802,-0.28798185941045773,-0.30793650793653526,-0.3278911564626128,-0.34784580498869033,-0.36780045351476787,-0.3877551020408454,-0.40770975056692293,-0.42766439909300047,-0.447619047619078,-0.46757369614515554,-0.48752834467123307,-0.5074829931973106,-0.5274376417233881,-0.5473922902494657,-0.5673469387755432,-0.5873015873016207,-0.6072562358276983,-0.6272108843537758,-0.6471655328798533,-0.6671201814059309,-0.6870748299320084,-0.707029478458086,-0.7269841269841635,-0.746938775510241,-0.7668934240363185,-0.7868480725623961,-0.8068027210884736,-0.8267573696145512,-0.8467120181406287,-0.8666666666667062,-0.8866213151927838,-0.9065759637188613,-0.9265306122449388,-0.9464852607710164,-0.9664399092970939,-0.9863945578231714],\"name\":\"RampDown\"}],\n",
24
- " {},\n",
25
- " {\"linkText\":\"Export to plot.ly\",\"showLink\":true}\n",
26
- ")\n",
27
- "\n",
28
- "window.addEventListener('resize', function() {\n",
29
- " Plotly.Plots.resize(document.getElementById('e5d9f583-7308-4775-b496-c3848bcb3384'))\n",
30
- "})\n",
31
- " }) \n",
32
- "</script>"
33
- ],
34
- "text/plain": [
35
- "#<Plotly::Offline::HTML:0x00007fd741c63868 @id=\"e5d9f583-7308-4775-b496-c3848bcb3384\", @data=[{:x=>[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299], :y=>[0.06264832417874369, 0.1250505236945281, 0.18696144082725336, 0.2481378479437379, 0.3083394030591003, 0.3673295940613788, 0.42487666788983836, 0.4807545410165316, 0.5347436876541295, 0.5866320022005455, 0.6362156325320928, 0.6832997808714386, 0.7276994690840093, 0.7692402653962486, 0.8077589696806922, 0.8431042546155973, 0.8751372602002243, 0.9037321392901133, 0.9287765520091285, 0.9501721070958866, 0.9678347484506664, 0.9816950853641806, 0.991698665130853, 0.9978061869755915, 0.9999936564536084, 0.9982524797167028, 0.992589497275665, 0.9830269571261583, 0.969602427343661, 0.9523686484908523, 0.9313933264172864, 0.9067588662653752, 0.878562048727684, 0.8469136498274179, 0.811938005715857, 0.773772524196507, 0.7325671448950293, 0.688483750195759, 0.6416955292590559, 0.5923862976180484, 0.5407497750278535, 0.48698882440436786, 0.43131465484258347, 0.3739459918455135, 0.31510821802362127, 0.2550324876406651, 0.19395481848461218, 0.13211516463136846, 0.06975647374412641, 0.007123732611892247, -0.055536995323039316, -0.11797953666742966, -0.17995857521140174, -0.24123061569515172, -0.30155494042174913, -0.360694554957803, -0.41841711920665464, -0.4744958601962072, -0.5287104629953566, -0.5808479362589023, -0.6307034490004961, -0.6780811353062289, -0.7227948638273908, -0.76466896902933, -0.8035389413235665, -0.8392520733718676, -0.8716680600231558, -0.9006595495263083, -0.9261126438533073, -0.9479273461671313, -0.9660179536764466, -0.980313394333687, -0.9907575060537568, -0.9973092573563939, -0.999942908565361, -0.9986481129311697, -0.9934299572800558, -0.9843089420295122, -0.9713209006488905, -0.9545168588814844, -0.9339628342811637, -0.9097395768511175, -0.8819422518036468, -0.8506800656873403, -0.8160758373504615, -0.7782655154260834, -0.7373976442346157, -0.6936327802020255, -0.6471428610864344, -0.598110530491217, -0.546728420318345, -0.49319839398099236, -0.43773075334857514, -0.3805434125398613, -0.32186104181006747, -0.26191418489530965, -0.20093835328207885, -0.13917310096006763, -0.07686108329331846, -0.014247103707104703, 0.04842284806422373, 0.11090256239000881, 0.1729465770199531, 0.23431114142458104, 0.2947551744109026, 0.3540412112511445, 0.4119363366035666, 0.4682130995602444, 0.5226504072268886, 0.5750343933241125, 0.625159258397714, 0.672828078337052, 0.7178535780251124, 0.7600588670808597, 0.7992781348033668, 0.835357301587532, 0.8681546242521777, 0.8975412529023916, 0.9234017371383938, 0.9456344796221863, 0.9641521352200848, 0.9788819541530244, 0.9897660678065149, 0.9967617160773984, 0.9998414153642309, 0.9989930665413147, 0.9942200024921843, 0.9855409750158026, 0.9729900811569105, 0.9566166292499501, 0.9364849452028347, 0.912674119781613, 0.8852776978888562, 0.8544033110565005, 0.820172254596957, 0.7827190110737137, 0.7421907219635737, 0.6987466095861797, 0.6525573515718878, 0.6038044103254797, 0.5526793201200546, 0.4993829346218631, 0.4441246378022972, 0.38712152133712957, 0.3285975317247181, 0.268782590473852, 0.20791169081776084, 0.1462239745029878, 0.08396179228010156, 0.021369751787304794, -0.041306243432537484, -0.10381996000604198, -0.16592580209926466, -0.22737977628295955, -0.28794045010251645, -0.3473699005866874, -0.4054346489686911, -0.4619065779475002, -0.5165638278857074, -0.5691916684230731, -0.6195833420814962, -0.6675408765471458, -0.7128758624385838, -0.7554101935052605, -0.794976766348396, -0.831420136915287, -0.8645971311878672, -0.8943774076663356, -0.9206439694380514, -0.9432936238199242, -0.9622373877685281, -0.9774008374652197, -0.9887244007028437, -0.996163590925345, -0.9996891820008162, -0.9992873230413597, -0.9949595928186703, -0.9867229935615612, -0.9746098841597979, -0.9586678530366614, -0.9389595311896851, -0.9155623461340605, -0.888568217715394, -0.8580831969868614, -0.8242270495695003, -0.7871327851324659, -0.7469461348417854, -0.7038249788305359, -0.6579387259397156, -0.6094676481666236, -0.5586021724354711, -0.5055421324726126, -0.45049598372555716, -0.39367998441007296, -0.33531734590276796, -0.27563735581700344, -0.214874477207262, -0.15326742744091962, -0.0910582403562046, -0.028491315390848104, 0.03418754258292727, 0.09673208894492658, 0.15889660674110198, 0.2204368720246652, 0.2811111133316561, 0.34068096152151495, 0.39891238625104486, 0.4555766154026677, 0.5104510338548328, 0.5633200580636295, 0.6139759830196267, 0.6622197982525507, 0.707861969677975, 0.7507231842144073, 0.7906350542454174, 0.8274407791592056, 0.8609957613666404, 0.8911681743776332, 0.917839480704066, 0.9409048975545964, 0.9602738084917902, 0.9758701194343005, 0.9876325576054895, 0.9955149122540178, 0.9994862162006888, 0.9995308674983127, 0.995648690726625, 0.9878549376814562, 0.9761802274554408, 0.9606704261456717, 0.9413864666608904, 0.9184041093361243, 0.8918136442952469, 0.861719536730774, 0.8282400164944765, 0.7915066136111754, 0.7516636415405281, 0.7088676302169064, 0.6632867110947601, 0.6150999566154255, 0.564496676690392, 0.5116756749649229, 0.4568444677839033, 0.400218468928372, 0.34202014332561553, 0.2824781330576296, 0.22182635910157106, 0.16030310233116643, 0.09815006738952108, 0.035611433111064225, -0.02706710677679009, -0.08963930890350012, -0.15185934766461173, -0.2134827809897259, -0.2742675106749982, -0.3339747335073663, -0.39236987944383867, -0.44922353316006025, -0.5043123353476607, -0.5574198602195314, -0.6083374657755762, -0.656865113488495, -0.7028121541893949, -0.7459980770656558, -0.7862532188285695, -0.8234194302645867, -0.8573506975515852, -0.8879137158991414, -0.9149884132592281, -0.9384684220497923, -0.9582614970380094, -0.9742898777414704, -0.9864905939235369, -0.9948157129826994, -0.9992325282640006, -0.9997236875527291, -0.9962872612455639, -0.9889367499313508, -0.9777010313517301, -0.9626242469499838, -0.9437656284538246, -0.9211992651734164, -0.8950138129288354, -0.8653121457505171, -0.8322109517210116, -0.7958402745458943, -0.7563430026547986, -0.7138743078397833, -0.6686010356363735, -0.6207010498423408, -0.5703625337493137, -0.5177832508325304, -0.4631697678031738, -0.4067366430756862, -0.3487055838383405, -0.2893045750385841, -0.22876698370518198, -0.16733064212587995, -0.1052369134825877, -0.042729743614784835], :name=>\"Sine\"}, {:x=>[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299], :y=>[0.01995464852607709, 0.03990929705215418, 0.05986394557823127, 0.07981859410430836, 0.09977324263038545, 0.11972789115646254, 0.13968253968253963, 0.15963718820861672, 0.1795918367346938, 0.1995464852607709, 0.219501133786848, 0.23945578231292508, 0.25941043083900217, 0.27936507936507926, 0.29931972789115635, 0.31927437641723344, 0.33922902494331053, 0.3591836734693876, 0.3791383219954647, 0.3990929705215418, 0.4190476190476189, 0.439002267573696, 0.45895691609977307, 0.47891156462585016, 0.49886621315192725, 0.5188208616780043, 0.5387755102040814, 0.5587301587301585, 0.5786848072562356, 0.5986394557823127, 0.6185941043083898, 0.6385487528344669, 0.658503401360544, 0.6784580498866211, 0.6984126984126982, 0.7183673469387752, 0.7383219954648523, 0.7582766439909294, 0.7782312925170065, 0.7981859410430836, 0.8181405895691607, 0.8380952380952378, 0.8580498866213149, 0.878004535147392, 0.897959183673469, 0.9179138321995461, 0.9378684807256232, 0.9578231292517003, 0.9777777777777774, 0.9977324263038545, -0.982312925170068, -0.9623582766439913, -0.9424036281179138, -0.9224489795918371, -0.9024943310657596, -0.882539682539683, -0.8625850340136054, -0.8426303854875288, -0.8226757369614512, -0.8027210884353746, -0.7827664399092971, -0.7628117913832204, -0.7428571428571429, -0.7229024943310662, -0.7029478458049887, -0.6829931972789121, -0.6630385487528345, -0.6430839002267579, -0.6231292517006803, -0.6031746031746037, -0.5832199546485262, -0.5632653061224495, -0.543310657596372, -0.5233560090702953, -0.5034013605442178, -0.48344671201814116, -0.4634920634920636, -0.443537414965987, -0.42358276643990944, -0.4036281179138328, -0.38367346938775526, -0.3637188208616786, -0.3437641723356011, -0.32380952380952444, -0.3038548752834469, -0.28390022675737026, -0.2639455782312927, -0.24399092970521608, -0.22403628117913854, -0.2040816326530619, -0.18412698412698436, -0.16417233560090772, -0.14421768707483018, -0.12426303854875353, -0.104308390022676, -0.08435374149659935, -0.06439909297052182, -0.044444444444445175, -0.02448979591836764, -0.004535147392290995, 0.01541950113378654, 0.03537414965986363, 0.05532879818594072, 0.07528344671201781, 0.0952380952380949, 0.11519274376417199, 0.13514739229024908, 0.15510204081632617, 0.17505668934240326, 0.19501133786848035, 0.21496598639455744, 0.23492063492063453, 0.2548752834467116, 0.2748299319727887, 0.2947845804988658, 0.3147392290249429, 0.33469387755102, 0.35464852607709707, 0.37460317460317416, 0.39455782312925125, 0.41451247165532834, 0.43446712018140543, 0.4544217687074825, 0.4743764172335596, 0.4943310657596367, 0.5142857142857138, 0.5342403628117909, 0.554195011337868, 0.5741496598639451, 0.5941043083900222, 0.6140589569160992, 0.6340136054421763, 0.6539682539682534, 0.6739229024943305, 0.6938775510204076, 0.7138321995464847, 0.7337868480725618, 0.7537414965986389, 0.773696145124716, 0.793650793650793, 0.8136054421768701, 0.8335600907029472, 0.8535147392290243, 0.8734693877551014, 0.8934240362811785, 0.9133786848072556, 0.9333333333333327, 0.9532879818594098, 0.9732426303854869, 0.993197278911564, -0.986848072562359, -0.9668934240362823, -0.9469387755102048, -0.9269841269841272, -0.9070294784580506, -0.887074829931974, -0.8671201814058964, -0.8471655328798189, -0.8272108843537422, -0.8072562358276656, -0.7873015873015881, -0.7673469387755105, -0.7473922902494339, -0.7274376417233572, -0.7074829931972797, -0.6875283446712022, -0.6675736961451255, -0.6476190476190489, -0.6276643990929713, -0.6077097505668938, -0.5877551020408172, -0.5678004535147405, -0.547845804988663, -0.5278911564625854, -0.5079365079365088, -0.48798185941043215, -0.4680272108843546, -0.4480725623582771, -0.42811791383220044, -0.4081632653061238, -0.38820861678004626, -0.3682539682539687, -0.3482993197278921, -0.32834467120181543, -0.3083900226757379, -0.28843537414966036, -0.2684807256235837, -0.24852607709750707, -0.22857142857142954, -0.208616780045352, -0.18866213151927536, -0.1687074829931987, -0.14875283446712118, -0.12879818594104364, -0.108843537414967, -0.08888888888889035, -0.06893424036281282, -0.04897959183673528, -0.029024943310658635, -0.00907029478458199, 0.010884353741495545, 0.03083900226757308, 0.05079365079365061, 0.07074829931972815, 0.09070294784580568, 0.11065759637188322, 0.13061224489796075, 0.15056689342403828, 0.17052154195011582, 0.19047619047619335, 0.2104308390022709, 0.23038548752834842, 0.25034013605442595, 0.2702947845805035, 0.290249433106581, 0.31020408163265856, 0.3301587301587361, 0.3501133786848136, 0.37006802721089116, 0.3900226757369687, 0.40997732426304623, 0.42993197278912376, 0.4498866213152013, 0.46984126984127883, 0.48979591836735636, 0.5097505668934339, 0.5297052154195114, 0.549659863945589, 0.5696145124716665, 0.589569160997744, 0.6095238095238216, 0.6294784580498991, 0.6494331065759766, 0.6693877551020542, 0.6893424036281317, 0.7092970521542092, 0.7292517006802868, 0.7492063492063643, 0.7691609977324418, 0.7891156462585194, 0.8090702947845969, 0.8290249433106744, 0.848979591836752, 0.8689342403628295, 0.888888888888907, 0.9088435374149846, 0.9287981859410621, 0.9487528344671396, 0.9687074829932172, 0.9886621315192947, -0.9913832199546277, -0.9714285714285502, -0.9514739229024727, -0.9315192743763951, -0.9115646258503176, -0.8916099773242401, -0.8716553287981625, -0.851700680272085, -0.8317460317460075, -0.8117913832199299, -0.7918367346938524, -0.7718820861677749, -0.7519274376416973, -0.7319727891156198, -0.7120181405895423, -0.6920634920634647, -0.6721088435373872, -0.6521541950113097, -0.6321995464852321, -0.6122448979591546, -0.5922902494330771, -0.5723356009069995, -0.552380952380922, -0.5324263038548445, -0.5124716553287669, -0.4925170068026894, -0.47256235827661186, -0.4526077097505343, -0.4326530612244568, -0.41269841269837926, -0.3927437641723017, -0.3727891156462242, -0.35283446712014666, -0.3328798185940691, -0.3129251700679916, -0.29297052154191405, -0.2730158730158365, -0.253061224489759, -0.23310657596368145, -0.21315192743760392, -0.19319727891152638, -0.17324263038544885, -0.15328798185937131, -0.13333333333329378, -0.11337868480721625, -0.09342403628113871, -0.07346938775506118, -0.05351473922898364, -0.03356009070290611, -0.013605442176828575], :name=>\"Sawtooth\"}, {:x=>[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299], :y=>[1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0], :name=>\"Square\"}, {:x=>[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299], :y=>[0.039909297052154194, 0.07981859410430839, 0.11972789115646258, 0.15963718820861678, 0.19954648526077096, 0.23945578231292514, 0.2793650793650793, 0.3192743764172335, 0.3591836734693877, 0.39909297052154186, 0.43900226757369604, 0.4789115646258502, 0.5188208616780045, 0.5587301587301586, 0.5986394557823128, 0.638548752834467, 0.6784580498866212, 0.7183673469387754, 0.7582766439909295, 0.7981859410430837, 0.8380952380952379, 0.8780045351473921, 0.9179138321995463, 0.9578231292517004, 0.9977324263038546, 0.9623582766439911, 0.9224489795918369, 0.8825396825396827, 0.8426303854875286, 0.8027210884353744, 0.7628117913832202, 0.722902494331066, 0.6829931972789118, 0.6430839002267577, 0.6031746031746035, 0.5632653061224493, 0.5233560090702951, 0.48344671201814093, 0.44353741496598675, 0.4036281179138326, 0.3637188208616784, 0.3238095238095242, 0.28390022675737003, 0.24399092970521585, 0.20408163265306167, 0.1641723356009075, 0.12426303854875331, 0.08435374149659913, 0.04444444444444495, 0.004535147392290773, -0.03537414965986363, -0.07528344671201781, -0.11519274376417199, -0.15510204081632617, -0.19501133786848035, -0.23492063492063453, -0.2748299319727887, -0.3147392290249429, -0.35464852607709707, -0.39455782312925125, -0.43446712018140543, -0.4743764172335596, -0.5142857142857138, -0.554195011337868, -0.5941043083900222, -0.6340136054421763, -0.6739229024943305, -0.7138321995464847, -0.7537414965986389, -0.793650793650793, -0.8335600907029472, -0.8734693877551014, -0.9133786848072556, -0.9532879818594098, -0.993197278911564, -0.9668934240362819, -0.9269841269841277, -0.8870748299319735, -0.8471655328798193, -0.8072562358276651, -0.767346938775511, -0.7274376417233568, -0.6875283446712026, -0.6476190476190484, -0.6077097505668942, -0.5678004535147401, -0.5278911564625859, -0.4879818594104317, -0.4480725623582775, -0.40816326530612335, -0.36825396825396917, -0.328344671201815, -0.2884353741496608, -0.24852607709750663, -0.20861678004535245, -0.16870748299319827, -0.12879818594104409, -0.0888888888888899, -0.048979591836735725, -0.009070294784581545, 0.03083900226757308, 0.07074829931972726, 0.11065759637188144, 0.15056689342403562, 0.1904761904761898, 0.23038548752834398, 0.27029478458049816, 0.31020408163265234, 0.3501133786848065, 0.3900226757369607, 0.4299319727891149, 0.46984126984126906, 0.5097505668934232, 0.5496598639455774, 0.5895691609977316, 0.6294784580498858, 0.66938775510204, 0.7092970521541941, 0.7492063492063483, 0.7891156462585025, 0.8290249433106567, 0.8689342403628109, 0.908843537414965, 0.9487528344671192, 0.9886621315192734, 0.9714285714285724, 0.9315192743764182, 0.8916099773242641, 0.8517006802721099, 0.8117913832199557, 0.7718820861678015, 0.7319727891156473, 0.6920634920634932, 0.652154195011339, 0.6122448979591848, 0.5723356009070306, 0.5324263038548764, 0.49251700680272226, 0.4526077097505681, 0.4126984126984139, 0.3727891156462597, 0.33287981859410554, 0.29297052154195136, 0.2530612244897972, 0.213151927437643, 0.17324263038548882, 0.13333333333333464, 0.09342403628118046, 0.053514739229026276, 0.013605442176872096, -0.026303854875282084, -0.06621315192743626, -0.10612244897959044, -0.14603174603174462, -0.1859410430838988, -0.22585034013605298, -0.26575963718820717, -0.30566893424036135, -0.3455782312925155, -0.3854875283446697, -0.4253968253968239, -0.46530612244897807, -0.5052154195011322, -0.5451247165532864, -0.5850340136054406, -0.6249433106575948, -0.664852607709749, -0.7047619047619031, -0.7446712018140573, -0.7845804988662115, -0.8244897959183657, -0.8643990929705199, -0.904308390022674, -0.9442176870748282, -0.9841269841269824, -0.9759637188208634, -0.9360544217687092, -0.896145124716555, -0.8562358276644009, -0.8163265306122467, -0.7764172335600925, -0.7365079365079383, -0.6965986394557842, -0.65668934240363, -0.6167800453514758, -0.5768707482993216, -0.5369614512471674, -0.49705215419501325, -0.45714285714285907, -0.4172335600907049, -0.3773242630385507, -0.33741496598639653, -0.29750566893424235, -0.25759637188208817, -0.217687074829934, -0.1777777777777798, -0.13786848072562563, -0.09795918367347145, -0.05804988662131727, -0.01814058956916309, 0.02176870748299109, 0.06167800453514616, 0.10158730158730123, 0.1414965986394563, 0.18140589569161136, 0.22131519274376643, 0.2612244897959215, 0.30113378684807657, 0.34104308390023164, 0.3809523809523867, 0.4208616780045418, 0.46077097505669684, 0.5006802721088519, 0.540589569161007, 0.580498866213162, 0.6204081632653171, 0.6603174603174722, 0.7002267573696273, 0.7401360544217823, 0.7800453514739374, 0.8199546485260925, 0.8598639455782475, 0.8997732426304026, 0.9396825396825577, 0.9795918367347127, 0.9804988662131322, 0.9405895691609771, 0.9006802721088221, 0.860770975056667, 0.8208616780045119, 0.7809523809523569, 0.7410430839002018, 0.7011337868480467, 0.6612244897958917, 0.6213151927437366, 0.5814058956915815, 0.5414965986394265, 0.5015873015872714, 0.4616780045351163, 0.42176870748296125, 0.3818594104308062, 0.3419501133786511, 0.30204081632649604, 0.262131519274341, 0.2222222222221859, 0.18231292517003084, 0.14240362811787577, 0.1024943310657207, 0.06258503401356563, 0.022675736961410564, -0.017233560090744504, -0.05714285714289957, -0.09705215419505464, -0.1369614512472097, -0.17687074829936478, -0.21678004535151985, -0.2566893424036749, -0.29659863945583, -0.33650793650798505, -0.3764172335601401, -0.4163265306122952, -0.45623582766445026, -0.4961451247166053, -0.5360544217687604, -0.5759637188209155, -0.6158730158730705, -0.6557823129252256, -0.6956916099773807, -0.7356009070295357, -0.7755102040816908, -0.8154195011338459, -0.8553287981860009, -0.895238095238156, -0.9351473922903111, -0.9750566893424661, -0.9850340136053788, -0.9451247165532237, -0.9052154195010687, -0.8653061224489136, -0.8253968253967585, -0.7854875283446034, -0.7455782312924484, -0.7056689342402933, -0.6657596371881382, -0.6258503401359832, -0.5859410430838281, -0.546031746031673, -0.506122448979518, -0.4662131519273629, -0.42630385487520783, -0.38639455782305276, -0.3464852607708977, -0.30657596371874263, -0.26666666666658756, -0.2267573696144325, -0.18684807256227742, -0.14693877551012235, -0.10702947845796729, -0.06712018140581222, -0.02721088435365715], :name=>\"Triangle\"}, {:x=>[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299], :y=>[-0.9800453514739229, -0.9600907029478458, -0.9401360544217687, -0.9201814058956916, -0.9002267573696145, -0.8802721088435375, -0.8603174603174604, -0.8403628117913833, -0.8204081632653062, -0.8004535147392291, -0.780498866213152, -0.7605442176870749, -0.7405895691609978, -0.7206349206349207, -0.7006802721088436, -0.6807256235827666, -0.6607709750566895, -0.6408163265306124, -0.6208616780045353, -0.6009070294784582, -0.5809523809523811, -0.560997732426304, -0.5410430839002269, -0.5210884353741498, -0.5011337868480727, -0.48117913832199555, -0.46122448979591846, -0.44126984126984137, -0.4213151927437643, -0.4013605442176872, -0.3814058956916101, -0.361451247165533, -0.3414965986394559, -0.3215419501133788, -0.30158730158730174, -0.28163265306122465, -0.26167800453514756, -0.24172335600907047, -0.22176870748299338, -0.2018140589569163, -0.1818594104308392, -0.1619047619047621, -0.14195011337868502, -0.12199546485260793, -0.10204081632653084, -0.08208616780045375, -0.062131519274376656, -0.042176870748299566, -0.022222222222222476, -0.0022675736961453863, 0.017687074829931815, 0.037641723356008905, 0.057596371882085995, 0.07755102040816308, 0.09750566893424018, 0.11746031746031727, 0.13741496598639436, 0.15736961451247145, 0.17732426303854854, 0.19727891156462563, 0.21723356009070272, 0.2371882086167798, 0.2571428571428569, 0.277097505668934, 0.2970521541950111, 0.31700680272108817, 0.33696145124716526, 0.35691609977324235, 0.37687074829931944, 0.3968253968253965, 0.4167800453514736, 0.4367346938775507, 0.4566893424036278, 0.4766439909297049, 0.496598639455782, 0.5165532879818591, 0.5365079365079362, 0.5564625850340132, 0.5764172335600903, 0.5963718820861674, 0.6163265306122445, 0.6362811791383216, 0.6562358276643987, 0.6761904761904758, 0.6961451247165529, 0.71609977324263, 0.7360544217687071, 0.7560090702947841, 0.7759637188208612, 0.7959183673469383, 0.8158730158730154, 0.8358276643990925, 0.8557823129251696, 0.8757369614512467, 0.8956916099773238, 0.9156462585034009, 0.935600907029478, 0.955555555555555, 0.9755102040816321, 0.9954648526077092, -0.9845804988662135, -0.9646258503401364, -0.9446712018140593, -0.9247165532879822, -0.9047619047619051, -0.884807256235828, -0.8648526077097509, -0.8448979591836738, -0.8249433106575967, -0.8049886621315196, -0.7850340136054426, -0.7650793650793655, -0.7451247165532884, -0.7251700680272113, -0.7052154195011342, -0.6852607709750571, -0.66530612244898, -0.6453514739229029, -0.6253968253968258, -0.6054421768707487, -0.5854875283446717, -0.5655328798185946, -0.5455782312925175, -0.5256235827664404, -0.5056689342403633, -0.4857142857142862, -0.4657596371882091, -0.44580498866213203, -0.42585034013605494, -0.40589569160997785, -0.38594104308390076, -0.36598639455782367, -0.3460317460317466, -0.3260770975056695, -0.3061224489795924, -0.2861678004535153, -0.2662131519274382, -0.24625850340136113, -0.22630385487528404, -0.20634920634920695, -0.18639455782312986, -0.16643990929705277, -0.14648526077097568, -0.1265306122448986, -0.1065759637188215, -0.08662131519274441, -0.06666666666666732, -0.04671201814059023, -0.026757369614513138, -0.006802721088436048, 0.013151927437641042, 0.03310657596371813, 0.05306122448979522, 0.07301587301587231, 0.0929705215419494, 0.11292517006802649, 0.13287981859410358, 0.15283446712018067, 0.17278911564625776, 0.19274376417233485, 0.21269841269841194, 0.23265306122448903, 0.2526077097505661, 0.2725623582766432, 0.2925170068027203, 0.3124716553287974, 0.3324263038548745, 0.3523809523809516, 0.37233560090702866, 0.39229024943310575, 0.41224489795918284, 0.43219954648525993, 0.452154195011337, 0.4721088435374141, 0.4920634920634912, 0.5120181405895683, 0.5319727891156454, 0.5519274376417225, 0.5718820861677996, 0.5918367346938767, 0.6117913832199537, 0.6317460317460308, 0.6517006802721079, 0.671655328798185, 0.6916099773242621, 0.7115646258503392, 0.7315192743764163, 0.7514739229024934, 0.7714285714285705, 0.7913832199546476, 0.8113378684807246, 0.8312925170068017, 0.8512471655328788, 0.8712018140589559, 0.891156462585033, 0.9111111111111101, 0.9310657596371872, 0.9510204081632643, 0.9709750566893414, 0.9909297052154185, -0.9891156462585045, -0.9691609977324269, -0.9492063492063494, -0.9292517006802719, -0.9092970521541943, -0.8893424036281168, -0.8693877551020393, -0.8494331065759617, -0.8294784580498842, -0.8095238095238066, -0.7895691609977291, -0.7696145124716516, -0.749659863945574, -0.7297052154194965, -0.709750566893419, -0.6897959183673414, -0.6698412698412639, -0.6498866213151864, -0.6299319727891088, -0.6099773242630313, -0.5900226757369538, -0.5700680272108762, -0.5501133786847987, -0.5301587301587212, -0.5102040816326436, -0.4902494331065661, -0.47029478458048857, -0.45034013605441103, -0.4303854875283335, -0.41043083900225596, -0.39047619047617843, -0.3705215419501009, -0.35056689342402336, -0.33061224489794583, -0.3106575963718683, -0.29070294784579076, -0.2707482993197132, -0.2507936507936357, -0.23083900226755816, -0.21088435374148062, -0.1909297052154031, -0.17097505668932556, -0.15102040816324802, -0.1310657596371705, -0.11111111111109295, -0.09115646258501542, -0.07120181405893788, -0.05124716553286035, -0.031292517006782816, -0.011337868480705282, 0.008616780045372252, 0.028571428571449786, 0.04852607709752732, 0.06848072562360485, 0.08843537414968239, 0.10839002267575992, 0.12834467120183746, 0.148299319727915, 0.16825396825399253, 0.18820861678007006, 0.2081632653061476, 0.22811791383222513, 0.24807256235830266, 0.2680272108843802, 0.28798185941045773, 0.30793650793653526, 0.3278911564626128, 0.34784580498869033, 0.36780045351476787, 0.3877551020408454, 0.40770975056692293, 0.42766439909300047, 0.447619047619078, 0.46757369614515554, 0.48752834467123307, 0.5074829931973106, 0.5274376417233881, 0.5473922902494657, 0.5673469387755432, 0.5873015873016207, 0.6072562358276983, 0.6272108843537758, 0.6471655328798533, 0.6671201814059309, 0.6870748299320084, 0.707029478458086, 0.7269841269841635, 0.746938775510241, 0.7668934240363185, 0.7868480725623961, 0.8068027210884736, 0.8267573696145512, 0.8467120181406287, 0.8666666666667062, 0.8866213151927838, 0.9065759637188613, 0.9265306122449388, 0.9464852607710164, 0.9664399092970939, 0.9863945578231714], :name=>\"RampUp\"}, {:x=>[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299], :y=>[0.9800453514739229, 0.9600907029478458, 0.9401360544217687, 0.9201814058956916, 0.9002267573696145, 0.8802721088435375, 0.8603174603174604, 0.8403628117913833, 0.8204081632653062, 0.8004535147392291, 0.780498866213152, 0.7605442176870749, 0.7405895691609978, 0.7206349206349207, 0.7006802721088436, 0.6807256235827666, 0.6607709750566895, 0.6408163265306124, 0.6208616780045353, 0.6009070294784582, 0.5809523809523811, 0.560997732426304, 0.5410430839002269, 0.5210884353741498, 0.5011337868480727, 0.48117913832199555, 0.46122448979591846, 0.44126984126984137, 0.4213151927437643, 0.4013605442176872, 0.3814058956916101, 0.361451247165533, 0.3414965986394559, 0.3215419501133788, 0.30158730158730174, 0.28163265306122465, 0.26167800453514756, 0.24172335600907047, 0.22176870748299338, 0.2018140589569163, 0.1818594104308392, 0.1619047619047621, 0.14195011337868502, 0.12199546485260793, 0.10204081632653084, 0.08208616780045375, 0.062131519274376656, 0.042176870748299566, 0.022222222222222476, 0.0022675736961453863, -0.017687074829931815, -0.037641723356008905, -0.057596371882085995, -0.07755102040816308, -0.09750566893424018, -0.11746031746031727, -0.13741496598639436, -0.15736961451247145, -0.17732426303854854, -0.19727891156462563, -0.21723356009070272, -0.2371882086167798, -0.2571428571428569, -0.277097505668934, -0.2970521541950111, -0.31700680272108817, -0.33696145124716526, -0.35691609977324235, -0.37687074829931944, -0.3968253968253965, -0.4167800453514736, -0.4367346938775507, -0.4566893424036278, -0.4766439909297049, -0.496598639455782, -0.5165532879818591, -0.5365079365079362, -0.5564625850340132, -0.5764172335600903, -0.5963718820861674, -0.6163265306122445, -0.6362811791383216, -0.6562358276643987, -0.6761904761904758, -0.6961451247165529, -0.71609977324263, -0.7360544217687071, -0.7560090702947841, -0.7759637188208612, -0.7959183673469383, -0.8158730158730154, -0.8358276643990925, -0.8557823129251696, -0.8757369614512467, -0.8956916099773238, -0.9156462585034009, -0.935600907029478, -0.955555555555555, -0.9755102040816321, -0.9954648526077092, 0.9845804988662135, 0.9646258503401364, 0.9446712018140593, 0.9247165532879822, 0.9047619047619051, 0.884807256235828, 0.8648526077097509, 0.8448979591836738, 0.8249433106575967, 0.8049886621315196, 0.7850340136054426, 0.7650793650793655, 0.7451247165532884, 0.7251700680272113, 0.7052154195011342, 0.6852607709750571, 0.66530612244898, 0.6453514739229029, 0.6253968253968258, 0.6054421768707487, 0.5854875283446717, 0.5655328798185946, 0.5455782312925175, 0.5256235827664404, 0.5056689342403633, 0.4857142857142862, 0.4657596371882091, 0.44580498866213203, 0.42585034013605494, 0.40589569160997785, 0.38594104308390076, 0.36598639455782367, 0.3460317460317466, 0.3260770975056695, 0.3061224489795924, 0.2861678004535153, 0.2662131519274382, 0.24625850340136113, 0.22630385487528404, 0.20634920634920695, 0.18639455782312986, 0.16643990929705277, 0.14648526077097568, 0.1265306122448986, 0.1065759637188215, 0.08662131519274441, 0.06666666666666732, 0.04671201814059023, 0.026757369614513138, 0.006802721088436048, -0.013151927437641042, -0.03310657596371813, -0.05306122448979522, -0.07301587301587231, -0.0929705215419494, -0.11292517006802649, -0.13287981859410358, -0.15283446712018067, -0.17278911564625776, -0.19274376417233485, -0.21269841269841194, -0.23265306122448903, -0.2526077097505661, -0.2725623582766432, -0.2925170068027203, -0.3124716553287974, -0.3324263038548745, -0.3523809523809516, -0.37233560090702866, -0.39229024943310575, -0.41224489795918284, -0.43219954648525993, -0.452154195011337, -0.4721088435374141, -0.4920634920634912, -0.5120181405895683, -0.5319727891156454, -0.5519274376417225, -0.5718820861677996, -0.5918367346938767, -0.6117913832199537, -0.6317460317460308, -0.6517006802721079, -0.671655328798185, -0.6916099773242621, -0.7115646258503392, -0.7315192743764163, -0.7514739229024934, -0.7714285714285705, -0.7913832199546476, -0.8113378684807246, -0.8312925170068017, -0.8512471655328788, -0.8712018140589559, -0.891156462585033, -0.9111111111111101, -0.9310657596371872, -0.9510204081632643, -0.9709750566893414, -0.9909297052154185, 0.9891156462585045, 0.9691609977324269, 0.9492063492063494, 0.9292517006802719, 0.9092970521541943, 0.8893424036281168, 0.8693877551020393, 0.8494331065759617, 0.8294784580498842, 0.8095238095238066, 0.7895691609977291, 0.7696145124716516, 0.749659863945574, 0.7297052154194965, 0.709750566893419, 0.6897959183673414, 0.6698412698412639, 0.6498866213151864, 0.6299319727891088, 0.6099773242630313, 0.5900226757369538, 0.5700680272108762, 0.5501133786847987, 0.5301587301587212, 0.5102040816326436, 0.4902494331065661, 0.47029478458048857, 0.45034013605441103, 0.4303854875283335, 0.41043083900225596, 0.39047619047617843, 0.3705215419501009, 0.35056689342402336, 0.33061224489794583, 0.3106575963718683, 0.29070294784579076, 0.2707482993197132, 0.2507936507936357, 0.23083900226755816, 0.21088435374148062, 0.1909297052154031, 0.17097505668932556, 0.15102040816324802, 0.1310657596371705, 0.11111111111109295, 0.09115646258501542, 0.07120181405893788, 0.05124716553286035, 0.031292517006782816, 0.011337868480705282, -0.008616780045372252, -0.028571428571449786, -0.04852607709752732, -0.06848072562360485, -0.08843537414968239, -0.10839002267575992, -0.12834467120183746, -0.148299319727915, -0.16825396825399253, -0.18820861678007006, -0.2081632653061476, -0.22811791383222513, -0.24807256235830266, -0.2680272108843802, -0.28798185941045773, -0.30793650793653526, -0.3278911564626128, -0.34784580498869033, -0.36780045351476787, -0.3877551020408454, -0.40770975056692293, -0.42766439909300047, -0.447619047619078, -0.46757369614515554, -0.48752834467123307, -0.5074829931973106, -0.5274376417233881, -0.5473922902494657, -0.5673469387755432, -0.5873015873016207, -0.6072562358276983, -0.6272108843537758, -0.6471655328798533, -0.6671201814059309, -0.6870748299320084, -0.707029478458086, -0.7269841269841635, -0.746938775510241, -0.7668934240363185, -0.7868480725623961, -0.8068027210884736, -0.8267573696145512, -0.8467120181406287, -0.8666666666667062, -0.8866213151927838, -0.9065759637188613, -0.9265306122449388, -0.9464852607710164, -0.9664399092970939, -0.9863945578231714], :name=>\"RampDown\"}], @layout={}, @config={:linkText=>\"Export to plot.ly\", :showLink=>true}, @embedded=true>"
36
- ]
37
- },
38
- "metadata": {},
39
- "output_type": "display_data"
40
- },
41
- {
42
- "data": {
43
- "text/plain": [
44
- "#<CZTop::Socket::PUB:0x7fd7459a90d0 last_endpoint=\"tcp://127.0.0.1:49964\">"
45
- ]
46
- },
47
- "execution_count": 2,
48
- "metadata": {},
49
- "output_type": "execute_result"
50
- }
51
- ],
52
- "source": [
53
- "$LOAD_PATH << File.dirname(__FILE__) + \"/../lib\"\n",
54
- "require 'synthesizer'\n",
55
- "\n",
56
- "include Synthesizer\n",
57
- "\n",
58
- "xs = []\n",
59
- "ys1 = []\n",
60
- "ys2 = []\n",
61
- "ys3 = []\n",
62
- "ys4 = []\n",
63
- "ys5 = []\n",
64
- "ys6 = []\n",
65
- "\n",
66
- "hz = 440.0\n",
67
- "sample = 44100.0\n",
68
- "delta = hz / sample\n",
69
- "pos = ShapePos.new\n",
70
- "\n",
71
- "300.times {|i|\n",
72
- " phase = pos.next(delta)\n",
73
- " xs << i\n",
74
- " ys1 << Shape::Sine[phase]\n",
75
- " ys2 << Shape::Sawtooth[phase]\n",
76
- " ys3 << Shape::Square[phase]\n",
77
- " ys4 << Shape::Triangle[phase]\n",
78
- " ys5 << Shape::RampUp[phase]\n",
79
- " ys6 << Shape::RampDown[phase]\n",
80
- "}\n",
81
- "\n",
82
- "traces = [\n",
83
- " {x: xs, y: ys1, name: \"Sine\"},\n",
84
- " {x: xs, y: ys2, name: \"Sawtooth\"},\n",
85
- " {x: xs, y: ys3, name: \"Square\"},\n",
86
- " {x: xs, y: ys4, name: \"Triangle\"},\n",
87
- " {x: xs, y: ys5, name: \"RampUp\"},\n",
88
- " {x: xs, y: ys6, name: \"RampDown\"},\n",
89
- "]\n",
90
- "Plotly::Plot.new(data: traces).show\n"
91
- ]
92
- },
93
- {
94
- "cell_type": "code",
95
- "execution_count": null,
96
- "metadata": {},
97
- "outputs": [],
98
- "source": []
99
- }
100
- ],
101
- "metadata": {
102
- "kernelspec": {
103
- "display_name": "Ruby 2.7.0",
104
- "language": "ruby",
105
- "name": "ruby"
106
- },
107
- "language_info": {
108
- "file_extension": ".rb",
109
- "mimetype": "application/x-ruby",
110
- "name": "ruby",
111
- "version": "2.6.3"
112
- }
113
- },
114
- "nbformat": 4,
115
- "nbformat_minor": 2
116
- }