mirror of
https://github.com/meteoinfo/MeteoInfo.git
synced 2025-12-08 20:36:05 +00:00
Upgrade ojAlgo to v51.3.0
This commit is contained in:
parent
5d83ab2181
commit
7309a1c3f2
5
.gitignore
vendored
5
.gitignore
vendored
@ -1,4 +1,7 @@
|
||||
target/
|
||||
/MeteoInfoLab/target/
|
||||
/MeteoInfoLib/target/
|
||||
/MeteoInfoMap/target/
|
||||
/MeteoInfoMap/target/
|
||||
**/.settings/*
|
||||
.classpath
|
||||
.project
|
||||
|
||||
@ -40,7 +40,7 @@
|
||||
<dependency>
|
||||
<groupId>org.ojalgo</groupId>
|
||||
<artifactId>ojalgo</artifactId>
|
||||
<version>48.4.1</version>
|
||||
<version>51.3.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.github.haifengl</groupId>
|
||||
|
||||
@ -96,7 +96,7 @@ public class KrigingInterpolation1D implements Interpolation {
|
||||
yv[n] = 0.0;
|
||||
v.set(n, n, 0.0);
|
||||
|
||||
SingularValue<Double> tmpSVD = SingularValue.make(v);
|
||||
SingularValue<Double> tmpSVD = SingularValue.PRIMITIVE.make(v);
|
||||
tmpSVD.decompose(v);
|
||||
MatrixStore<Double> solution = tmpSVD.getSolution(Primitive64Store.FACTORY.column(yv));
|
||||
yvi = solution.toRawCopy1D();
|
||||
|
||||
@ -108,7 +108,7 @@ public class KrigingInterpolation2D implements Interpolation2D {
|
||||
value[n][n] = 0.0;
|
||||
|
||||
final Primitive64Matrix v = Primitive64Matrix.FACTORY.rows(value);
|
||||
SingularValue<Double> tmpSVD = SingularValue.make(v);
|
||||
SingularValue<Double> tmpSVD = SingularValue.PRIMITIVE.make(v);
|
||||
tmpSVD.decompose(v);
|
||||
MatrixStore<Double> solution = tmpSVD.getSolution(Primitive64Store.FACTORY.column(yv));
|
||||
yvi = solution.toRawCopy1D();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user