X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fmath%2FSparseMatrix.java;h=e24cda5b4a84df3dff4b6b4a72e8ce80d71e2c27;hb=bc18effe68ba80213a6d03ca7e6175adc6be71d6;hp=72f096362f4af13801b49df29f6d4f0de37567b0;hpb=80ff57c095b792b8e8e123ddb0eff4d1780d6cbd;p=jalview.git diff --git a/src/jalview/math/SparseMatrix.java b/src/jalview/math/SparseMatrix.java index 72f0963..e24cda5 100644 --- a/src/jalview/math/SparseMatrix.java +++ b/src/jalview/math/SparseMatrix.java @@ -1,3 +1,23 @@ +/* + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors + * + * This file is part of Jalview. + * + * Jalview is free software: you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * Jalview is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR + * PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with Jalview. If not, see . + * The Jalview Authors are detailed in the 'AUTHORS' file. + */ package jalview.math; import jalview.ext.android.SparseDoubleArray; @@ -25,10 +45,8 @@ public class SparseMatrix extends Matrix */ public SparseMatrix(double[][] v) { - rows = v.length; - if (rows > 0) { - cols = v[0].length; - } + super(v.length, v.length > 0 ? v[0].length : 0); + sparseColumns = new SparseDoubleArray[cols]; /*