git://source.jalview.org
/
jalview.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
82f81eb
)
Fix PaSiMap not having the eigenvalues saved
author
MorellThomas
<morellth@yahoo.co.jp>
Thu, 23 May 2024 08:19:42 +0000
(10:19 +0200)
committer
MorellThomas
<morellth@yahoo.co.jp>
Thu, 23 May 2024 08:19:42 +0000
(10:19 +0200)
src/jalview/math/Matrix.java
patch
|
blob
|
history
diff --git
a/src/jalview/math/Matrix.java
b/src/jalview/math/Matrix.java
index
85d0db3
..
7ae4b94
100755
(executable)
--- a/
src/jalview/math/Matrix.java
+++ b/
src/jalview/math/Matrix.java
@@
-1432,6
+1432,12
@@
public class Matrix implements MatrixI
result[i][k--] = this.getValue(i,j);
}
}
- return new Matrix(result);
+ MatrixI resultMatrix = new Matrix(result);
+ if (d != null)
+ resultMatrix.setD(d);
+ if (e != null)
+ resultMatrix.setE(e);
+
+ return resultMatrix;
}
}