1. Findvector of eigenvalues, lambda, ofD/A 2. Solveprod(1 + s*lambda) = d/det(A) (1) should not be a problem even for very large matrices. I'm not sure about (2) unless n is not too large. You could try the roots() or fzero() functions in Matlab. Note that if you us...
python3.8/site-packages/fanc/commands/fanc_commands.py", line 4016, in compartments ab_matrix = ABCompartmentMatrix.from_hic(matrix, File "/home/hbanduk/HiCenv/lib/python3.8/site-packages/fanc/architecture/compartments.py", line 106, in from_hic m = hic.matrix((chromosome, chromosome), oe...
I'm not sure about (2) unless n is not too large. You could try the roots() or fzero() functions in Matlab. Note that if you use roots(), you will have to compute the coefficients of the polynomial first from the product in (2) and you may lose a lot of precision in ...