| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 2 years, 1 month |
| seen | yesterday | |
| stats | profile views | 9 |
|
Mar 4 |
awarded | Necromancer |
|
Dec 1 |
awarded | Critic |
|
Nov 29 |
comment |
Fminunc returns indefinite hessian matrix for a convex objective is the hessian psd but singular (none of the eigenvalues are negative) or indefinite (some eigenvalues are negative)? |
|
Nov 27 |
answered | Adding an affine term to linear SVM / logistic regression objective function |
|
Nov 25 |
awarded | Yearling |
|
Nov 25 |
revised |
Machine Learning Algorithm for Completing Sparse Matrix Data added 148 characters in body |
|
Nov 25 |
answered | Machine Learning Algorithm for Completing Sparse Matrix Data |
|
Nov 24 |
comment |
Machine Learning Algorithm for Completing Sparse Matrix Data could you clarify your statement that the finishing times are inverse normally distributed? do you mean that 1/time is Gaussian? |
|
Nov 24 |
comment |
How to find the max distance between a set of nodes on a tree? great solution. here's a proof that it works. The algorithm finds a pair of nodes x0,y0 such that max_x d(x,x0) = max_y d(x0,y) (that is, x0 and y0 are each others' farthest nodes). For any such pair, d(x0,y0) is the diameter. Proof: let x*,y* be two nodes s.t. d(x*,y*) is the diameter. there exist nodes r and s such so that the paths look like x0--r--s--y0 and x*--r--s--y*. Suppose d(x0,y0) < d(x*,y*), then either d(x0,y*) > d(x0,y0) or d(y*,x0) > d(y0,x0), contradicting the fact that x0 and y0 are each others' farthest points. therefore d(x0,y0)=d(x*,y*). |
|
Nov 23 |
revised |
How to find the max distance between a set of nodes on a tree? deleted 8 characters in body |
|
Nov 21 |
comment |
How to find the max distance between a set of nodes on a tree? there remains one more issue: +1 should be +2 (spanning across the root requires two edges, not just one) |
|
Nov 21 |
comment |
How to find the max distance between a set of nodes on a tree? agreed that your update solves the problem. |
|
Nov 21 |
comment |
How to find the max distance between a set of nodes on a tree? there's a subtle flaw in this algorithm. it's possible that the two most distant nodes are under the same subtree, in which case your algorithm would incorrectly still try to span two subtrees. For example, your algorithm gets the wrong diameter when the root node has two subtrees, one of which is a very deep balanced tree and the other of which is a single node. |
|
Nov 21 |
comment |
How to find the max distance between a set of nodes on a tree? for some reason, it's not letting me comment @BlueRaja 's solution so i'm commenting here. it's possible that the two most distant nodes are under the same subtree, in which case your algorithm would incorrectly try to span two subtrees. For example, your algorithm gets the wrong diameter when the root node has two subtrees, one of which is a very deep balanced tree and the other of which is a single node. |
|
Nov 21 |
answered | How to find the max distance between a set of nodes on a tree? |
|
Nov 20 |
comment |
Algorithm to find the 'possible' combinations of variables with constraints in Matlab? the printed values are the indices of the entries of B that can be combined with those of A so that their sum exceeds 2000. if you want to print instead the elements of B (instead of their indices), write B(find(combo)) instead of find(combo). |
|
Nov 20 |
awarded | Editor |
|
Nov 20 |
revised |
Algorithm to find the 'possible' combinations of variables with constraints in Matlab? deleted 33 characters in body |
|
Nov 20 |
answered | Algorithm to find the 'possible' combinations of variables with constraints in Matlab? |
|
Nov 15 |
comment |
Emacs preview-latex to format python comments and docstrings didn't know about sphinx, andreas. thanks. but i'm looking for rendered equations in my python source while i'm editing it. sphinx is to what i want what preview-latex is to pdflatex. |