From e68cd8674f1ebad1dccd27a21f5195869772179e Mon Sep 17 00:00:00 2001 From: Yuji Sode Date: Sun, 8 Apr 2018 08:01:00 +0900 Subject: [PATCH 01/18] Create CHANGELOG.md --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..e77519f --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,5 @@ +## [1.1] - 2018-04-04 +## Changed +- [README.md] line x: + +## Added From 215518d223218a3a13dd5974d2fe65b5f7da6092 Mon Sep 17 00:00:00 2001 From: Yuji Sode Date: Sun, 8 Apr 2018 08:03:55 +0900 Subject: [PATCH 02/18] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 442180b..0b401fa 100644 --- a/README.md +++ b/README.md @@ -25,5 +25,5 @@ Two expressions are available for linear regressions. It requires Tcl/Tk 8.6+. - `regLines.tcl` -## 3. Library list +## 4. Library list - lSum/lSum.tcl (Yuji SODE, 2018): https://gist.github.com/YujiSODE/1f9a4e2729212691972b196a76ba9bd0 From 80a99f1493082c4ed83686a813571ef9dee6d624 Mon Sep 17 00:00:00 2001 From: Yuji Sode Date: Sun, 8 Apr 2018 08:08:19 +0900 Subject: [PATCH 03/18] Update README.md --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0b401fa..dba76e9 100644 --- a/README.md +++ b/README.md @@ -25,5 +25,12 @@ Two expressions are available for linear regressions. It requires Tcl/Tk 8.6+. - `regLines.tcl` -## 4. Library list +## 3. Functions defined by output tcl script file +- `lines(x)`: function that returns estimated sample distribution +- `linesPDF(x)`: function that returns a value of probability density function estimated from the sample distribution +- `linesVar()`: function that returns a random variable following PDF + - `$x`: a numerical value +## 4. + +## 5. Library list - lSum/lSum.tcl (Yuji SODE, 2018): https://gist.github.com/YujiSODE/1f9a4e2729212691972b196a76ba9bd0 From 75b322f4d1d2d42fae3b297bdb9543ba8512f05a Mon Sep 17 00:00:00 2001 From: Yuji Sode Date: Sun, 8 Apr 2018 08:09:05 +0900 Subject: [PATCH 04/18] Update CHANGELOG.md --- CHANGELOG.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e77519f..4cb4b12 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,3 @@ ## [1.1] - 2018-04-04 ## Changed -- [README.md] line x: - -## Added +- [README.md] line 28: `## 5. Library list` From 6ca84e3cab80e055bce7c5889251f3d7f4aef6d7 Mon Sep 17 00:00:00 2001 From: Yuji Sode Date: Sun, 8 Apr 2018 08:14:33 +0900 Subject: [PATCH 05/18] Update CHANGELOG.md --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4cb4b12..190e750 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ ## [1.1] - 2018-04-04 +## Added +- [README.md] lines 28-32: `## 3. Functions defined by output tcl script file` + `- `lines(x)`: function that returns estimated sample distribution` + `- `linesPDF(x)`: function that returns a value of probability density function estimated from the sample distribution` + `- `linesVar()`: function that returns a random variable following PDF` + ` - `$x`: a numerical value` + ## Changed - [README.md] line 28: `## 5. Library list` From 36bd6d7e5bf21ed296aa66f9a9f0bcab5a016dc5 Mon Sep 17 00:00:00 2001 From: Yuji Sode Date: Sun, 8 Apr 2018 08:16:58 +0900 Subject: [PATCH 06/18] Update CHANGELOG.md --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 190e750..85d3101 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +# Change Log + ## [1.1] - 2018-04-04 ## Added - [README.md] lines 28-32: `## 3. Functions defined by output tcl script file` From 6cc688150c38f4a15e7d8b32721ca5773bbf8b4d Mon Sep 17 00:00:00 2001 From: Yuji Sode Date: Sun, 8 Apr 2018 08:17:20 +0900 Subject: [PATCH 07/18] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index dba76e9..4b4fb43 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,7 @@ It requires Tcl/Tk 8.6+. - `linesPDF(x)`: function that returns a value of probability density function estimated from the sample distribution - `linesVar()`: function that returns a random variable following PDF - `$x`: a numerical value + ## 4. ## 5. Library list From 8089b6ede49f88c4b990fe1dbce9553955b2846a Mon Sep 17 00:00:00 2001 From: Yuji Sode Date: Sun, 8 Apr 2018 08:18:30 +0900 Subject: [PATCH 08/18] Update regLines.tcl --- regLines.tcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/regLines.tcl b/regLines.tcl index b5ee5a6..60acd54 100644 --- a/regLines.tcl +++ b/regLines.tcl @@ -41,7 +41,7 @@ # - $X: a numerical list for x-axis # - $Y: a numerical list for y-axis #-------------------------------------------------------------------- -#+++ function defined by output tcl script file +++ +#+++ functions defined by output tcl script file +++ # - lines(x): function that returns estimated sample distribution # - linesPDF(x): function that returns a value of probability density function estimated from the sample distribution # - linesVar(): function that returns a random variable following PDF From 8f5077c52c7a2acc6dfb41b9d8bfbc1f2c5042d3 Mon Sep 17 00:00:00 2001 From: Yuji Sode Date: Sun, 8 Apr 2018 08:19:56 +0900 Subject: [PATCH 09/18] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 85d3101..8b06d84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,4 +9,5 @@ ` - `$x`: a numerical value` ## Changed +- [regLines.tcl] line 44: `#+++ functions defined by output tcl script file +++` - [README.md] line 28: `## 5. Library list` From e82bfc157174204123bef5a3c14de681000856df Mon Sep 17 00:00:00 2001 From: Yuji Sode Date: Sun, 8 Apr 2018 08:26:41 +0900 Subject: [PATCH 10/18] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4b4fb43..7c705d1 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ It requires Tcl/Tk 8.6+. - `linesVar()`: function that returns a random variable following PDF - `$x`: a numerical value -## 4. +## 4. [v1.1+] Simplified implementation of `linesVar()` function ## 5. Library list - lSum/lSum.tcl (Yuji SODE, 2018): https://gist.github.com/YujiSODE/1f9a4e2729212691972b196a76ba9bd0 From a0be6b613a5fced3091ca7ae7828ca9977d15c42 Mon Sep 17 00:00:00 2001 From: Yuji Sode Date: Sun, 8 Apr 2018 08:28:32 +0900 Subject: [PATCH 11/18] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b06d84..204c0a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## [1.1] - 2018-04-04 ## Added +- [README.md] lines 34: `## 4. [v1.1+] Simplified implementation of `linesVar()` function` - [README.md] lines 28-32: `## 3. Functions defined by output tcl script file` `- `lines(x)`: function that returns estimated sample distribution` `- `linesPDF(x)`: function that returns a value of probability density function estimated from the sample distribution` From 64a7314b0b4d9a2825953d604bc45a21bc860229 Mon Sep 17 00:00:00 2001 From: Yuji Sode Date: Sun, 8 Apr 2018 08:31:13 +0900 Subject: [PATCH 12/18] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7c705d1..9a12a68 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ It requires Tcl/Tk 8.6+. - `linesVar()`: function that returns a random variable following PDF - `$x`: a numerical value -## 4. [v1.1+] Simplified implementation of `linesVar()` function +## 4. [v1.1+] Simplified implementation of `linesVar()` function defined by output tcl script file ## 5. Library list - lSum/lSum.tcl (Yuji SODE, 2018): https://gist.github.com/YujiSODE/1f9a4e2729212691972b196a76ba9bd0 From 00273d210fb453f4aa0310372333ae66235df3bd Mon Sep 17 00:00:00 2001 From: Yuji Sode Date: Sun, 8 Apr 2018 08:33:22 +0900 Subject: [PATCH 13/18] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9a12a68..7b46118 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ It requires Tcl/Tk 8.6+. - `linesVar()`: function that returns a random variable following PDF - `$x`: a numerical value -## 4. [v1.1+] Simplified implementation of `linesVar()` function defined by output tcl script file +## 4. Simplified implementation of `linesVar()` function ## 5. Library list - lSum/lSum.tcl (Yuji SODE, 2018): https://gist.github.com/YujiSODE/1f9a4e2729212691972b196a76ba9bd0 From 6f7a78e0722ffc424c4346be36f1daaf2137b0ac Mon Sep 17 00:00:00 2001 From: Yuji Sode Date: Sun, 8 Apr 2018 08:34:03 +0900 Subject: [PATCH 14/18] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 204c0a0..28ce008 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ## [1.1] - 2018-04-04 ## Added -- [README.md] lines 34: `## 4. [v1.1+] Simplified implementation of `linesVar()` function` +- [README.md] lines 34: `## 4. Simplified implementation of `linesVar()` function` - [README.md] lines 28-32: `## 3. Functions defined by output tcl script file` `- `lines(x)`: function that returns estimated sample distribution` `- `linesPDF(x)`: function that returns a value of probability density function estimated from the sample distribution` From 949f644eecfbf1baa4dbb228ca1f0355f5fdfda3 Mon Sep 17 00:00:00 2001 From: Yuji Sode Date: Sun, 8 Apr 2018 08:40:01 +0900 Subject: [PATCH 15/18] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 7b46118..d1c7212 100644 --- a/README.md +++ b/README.md @@ -32,6 +32,8 @@ It requires Tcl/Tk 8.6+. - `$x`: a numerical value ## 4. Simplified implementation of `linesVar()` function +### Simplified implementation in Tcl +- [linesvar_toTcl.tcl](https://gist.github.com/YujiSODE/a65ccf09027f53eeac0ab5e6455a0e25) (Yuji SODE, 2018): the MIT License ## 5. Library list - lSum/lSum.tcl (Yuji SODE, 2018): https://gist.github.com/YujiSODE/1f9a4e2729212691972b196a76ba9bd0 From 5daa498c1a6d897642d1a36570fb24a8376f476b Mon Sep 17 00:00:00 2001 From: Yuji Sode Date: Sun, 8 Apr 2018 08:42:46 +0900 Subject: [PATCH 16/18] Update CHANGELOG.md --- CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 28ce008..209cbc2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,9 @@ ## [1.1] - 2018-04-04 ## Added -- [README.md] lines 34: `## 4. Simplified implementation of `linesVar()` function` +- [README.md] lines 35-36: `### Simplified implementation in Tcl` + `- [linesvar_toTcl.tcl](https://gist.github.com/YujiSODE/a65ccf09027f53eeac0ab5e6455a0e25) (Yuji SODE, 2018): the MIT License` +- [README.md] line 34: `## 4. Simplified implementation of `linesVar()` function` - [README.md] lines 28-32: `## 3. Functions defined by output tcl script file` `- `lines(x)`: function that returns estimated sample distribution` `- `linesPDF(x)`: function that returns a value of probability density function estimated from the sample distribution` From c70b423f14117ef3a201f6c0d9b3d2a79272a826 Mon Sep 17 00:00:00 2001 From: Yuji Sode Date: Sun, 8 Apr 2018 08:45:41 +0900 Subject: [PATCH 17/18] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index d1c7212..59c3f39 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,8 @@ It requires Tcl/Tk 8.6+. ## 4. Simplified implementation of `linesVar()` function ### Simplified implementation in Tcl - [linesvar_toTcl.tcl](https://gist.github.com/YujiSODE/a65ccf09027f53eeac0ab5e6455a0e25) (Yuji SODE, 2018): the MIT License +### Simplified implementation in JavaScript +- [linesvar_toJavaScript.tcl](https://gist.github.com/YujiSODE/b4bdf10ab7f6700a55baf7acfb351977) (Yuji SODE, 2018): the MIT License ## 5. Library list - lSum/lSum.tcl (Yuji SODE, 2018): https://gist.github.com/YujiSODE/1f9a4e2729212691972b196a76ba9bd0 From a3c9415693cf3c639fe42b25c8bdc53499d56ced Mon Sep 17 00:00:00 2001 From: Yuji Sode Date: Sun, 8 Apr 2018 08:49:24 +0900 Subject: [PATCH 18/18] Update CHANGELOG.md --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 209cbc2..a9afb20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## [1.1] - 2018-04-04 ## Added +- [README.md] lines 37-38: `### Simplified implementation in JavaScript` + `- [linesvar_toJavaScript.tcl](https://gist.github.com/YujiSODE/b4bdf10ab7f6700a55baf7acfb351977) (Yuji SODE, 2018): the MIT License` - [README.md] lines 35-36: `### Simplified implementation in Tcl` `- [linesvar_toTcl.tcl](https://gist.github.com/YujiSODE/a65ccf09027f53eeac0ab5e6455a0e25) (Yuji SODE, 2018): the MIT License` - [README.md] line 34: `## 4. Simplified implementation of `linesVar()` function`