FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Java/src/main/java/com/thealgorithms/maths/Gaussian.java at master · tyb/Java · GitHub
tyb
/
Java
Public
forked from
TheAlgorithms/Java
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
Java
/
src
/
main
/
java
/
com
/
thealgorithms
/
maths
/
Gaussian.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
67 lines (56 loc) · 2.07 KB
Breadcrumbs
Java
/
src
/
main
/
java
/
com
/
thealgorithms
/
maths
/
Gaussian.java
Copy path
File metadata and controls
67 lines (56 loc) · 2.07 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package
com
.
thealgorithms
.
maths
;
import
java
.
util
.
ArrayList
;
public
class
Gaussian
{
public
static
ArrayList
<
Double
>
gaussian
(
int
mat_size
,
ArrayList
<
Double
>
matrix
) {
ArrayList
<
Double
>
answerArray
=
new
ArrayList
<
Double
>();
int
i
,
j
=
0
;
double
[][]
mat
=
new
double
[
mat_size
+
1
][
mat_size
+
1
];
double
[][]
x
=
new
double
[
mat_size
][
mat_size
+
1
];
// Values from arraylist to matrix
for
(
i
=
0
;
i
<
mat_size
;
i
++) {
for
(
j
=
0
;
j
<=
mat_size
;
j
++) {
mat
[
i
][
j
] =
matrix
.
get
(
i
);
}
}
mat
=
gaussianElimination
(
mat_size
,
i
,
mat
);
answerArray
=
valueOfGaussian
(
mat_size
,
x
,
mat
);
return
answerArray
;
}
// Perform Gaussian elimination
public
static
double
[][]
gaussianElimination
(
int
mat_size
,
int
i
,
double
[][]
mat
) {
int
step
=
0
;
for
(
step
=
0
;
step
<
mat_size
-
1
;
step
++) {
for
(
i
=
step
;
i
<
mat_size
-
1
;
i
++) {
double
a
= (
mat
[
i
+
1
][
step
] /
mat
[
step
][
step
]);
for
(
int
j
=
step
;
j
<=
mat_size
;
j
++) {
mat
[
i
+
1
][
j
] =
mat
[
i
+
1
][
j
] - (
a
*
mat
[
step
][
j
]);
}
}
}
return
mat
;
}
// calculate the x_1, x_2,... values of the gaussian and save it in an arraylist.
public
static
ArrayList
<
Double
>
valueOfGaussian
(
int
mat_size
,
double
[][]
x
,
double
[][]
mat
) {
ArrayList
<
Double
>
answerArray
=
new
ArrayList
<
Double
>();
int
i
,
j
;
for
(
i
=
0
;
i
<
mat_size
;
i
++) {
for
(
j
=
0
;
j
<=
mat_size
;
j
++) {
x
[
i
][
j
] =
mat
[
i
][
j
];
}
}
for
(
i
=
mat_size
-
1
;
i
>=
0
;
i
--) {
double
sum
=
0
;
for
(
j
=
mat_size
-
1
;
j
>
i
;
j
--) {
x
[
i
][
j
] =
x
[
j
][
j
] *
x
[
i
][
j
];
sum
=
x
[
i
][
j
] +
sum
;
}
if
(
x
[
i
][
i
] ==
0
) {
x
[
i
][
i
] =
0
;
}
else
{
x
[
i
][
i
] = (
x
[
i
][
mat_size
] -
sum
) / (
x
[
i
][
i
]);
}
answerArray
.
add
(
x
[
i
][
j
]);
}
return
answerArray
;
}
}
Back
|
FazBrowse Home
|
New Git URL