Subject | Hash | Author | Date (UTC) |
---|---|---|---|
convex_hull.Grick: malý puntičkářský fix v get_r() | cfa07257b9ebadc21f2bd295d35978072fac19e9 | I am | 2022-10-10 07:14:26 |
qt_gui.qt_plot: add Grick to Ghull widget | d90b9a87c3ef0989951a45b2a22346381ce16f02 | I am | 2022-10-10 03:17:24 |
convex_hull: implement Grick convex hull aproximation | d09ca2e6aca41cfc67f3303eb97b97dd9c6f1fba | I am | 2022-10-10 03:15:52 |
qt_gui.qt_gui: distance matrix viewer is ready | a532e5259c081a1aff193d3b61e0104c42b08f20 | I am | 2022-10-08 20:52:14 |
qt_gui.qt_gui: prepare distance matrix window | 4eaea3305643c60c35f0b22421a7e57dbe7a7817 | I am | 2022-10-08 02:59:01 |
qt_gui.qt_graph_widgets: set up x limits for all graph widgets | 413d114f6a4e4b45c6cd44959cc42588bb7c8008 | I am | 2022-10-07 22:54:46 |
qt_gui.qt_plot: set up equal aspect by default | 11bfe09b3e96881ef6f7c8202a6723b6e8adc03a | I am | 2022-10-07 21:41:18 |
qt_gui.qt_gui: hide "connect/disconnect" button. It wasn't really supported | d9f195fe0611d6cf9a8154f0175c6c9506d56247 | I am | 2022-10-07 21:33:07 |
qt_gui.qt_plot: fix zero r cirkle (off by one error) | 681397de6d075b693897d5f64004c0eb481fd36f | I am | 2022-10-07 20:34:44 |
qt_gui: replace globally QtGui by QtWidgets | 969a659ae31728e75f587f25f54bab1ae5d6bfff | I am | 2022-10-07 12:45:34 |
qt_gui: add radia in Gaussian space (GRaph) widget | e3f5be57dcdc6bdd06cda0594ffd795ef5bc8ccc | I am | 2022-10-07 01:15:38 |
testcases.testcases_2d: fix natafm_plane pf | 75006ccd448c9717c13659e8ceb68800fbda39a7 | I am | 2022-06-26 12:03:39 |
misc: add entropy formula | 72736d485b4f0fa912a47a49f72954e1ec06c03f | I am | 2022-06-26 12:02:52 |
testcases.gaussian_2D: one more product... | e835ab15321169c2da085a6bb74e1ed749e67f14 | I am | 2022-05-11 15:38:24 |
whitebox: add explicitly solved Gaussian 2D product distribution | 23d243baed0b7b71ba887444665420d673dc3fe9 | I am | 2022-05-11 15:37:19 |
whitebox: simplify Bessel solutions | d097f681f9c96d7f8c6e0c044479681bae110e98 | I am | 2022-05-08 03:33:44 |
reorganize the repo | 5226fda5d5cba79b6d3471540a4a5f47109d0061 | I am | 2022-04-30 17:11:21 |
remore user stuff from the repo | ffd15c3d866496bccc5358797d71f2783118235c | I am | 2022-04-30 16:49:03 |
dicebox.Goal.get_pf_estimation: fix global stats | 423b68cea2d15fce8cf4a157de0160bf26987088 | I am | 2022-04-21 12:38:48 |
ghull.Shell_1DS: use geomspace placing if r is large enough. Asi funguje | ac4735a382524b05a76e258d774b0e5c0bfd0ec4 | I am | 2022-04-21 12:37:04 |
File | Lines added | Lines deleted |
---|---|---|
wellmet/convex_hull.py | 3 | 1 |
File wellmet/convex_hull.py changed (mode: 100644) (index fae1de0..c6a9832) | |||
... | ... | class Grick: | |
1147 | 1147 | def get_r(hull): | def get_r(hull): |
1148 | 1148 | hull._update() | hull._update() |
1149 | 1149 | "calculates minimal signed distance to planes. Can therefore be negative" | "calculates minimal signed distance to planes. Can therefore be negative" |
1150 | return min(-hull.bm[0], hull.bp[0]) | ||
1150 | #č ukazalo se, že náhodou další orthogonály můžou trefit menší poloměr | ||
1151 | #return min(-hull.bm[0], hull.bp[0]) | ||
1152 | return np.min((-hull.bm, hull.bp)) | ||
1151 | 1153 | ||
1152 | 1154 | ||
1153 | 1155 |