Skip to content

Instantly share code, notes, and snippets.

View AntonValk's full-sized avatar

Antonios Valkanas AntonValk

View GitHub Profile
@baogorek
baogorek / kalman-derivations.ipynb
Last active February 3, 2023 04:29
Gist version of Miscellaneous/methods/kalman-filter/kalman-derivations.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@AntonValk
AntonValk / ParJac.java
Last active August 7, 2017 18:29
Parallel Jacobi Algorithm Tester Class
//This method uses Fork/Join in order to create a parallelized version of the Jacobi Algorithm to solve Ax=B.
//This is the tester class
package jacobi;
import java.util.Arrays;
import java.util.concurrent.ForkJoinPool;
import java.util.concurrent.RecursiveTask;
public class ParJac extends RecursiveTask<double[]> {