Eong Koungmeng

Eong Koungmeng

Eong Koungmeng - អ៊ឹង គួងម៉េង

Hot

Post Top Ad

Post Top Ad

Wednesday, 19 July 2023

Image Rotation Using Matrix Transformation

July 19, 2023 0

About Program

This program can rotate any images by any angle using matrix transformation(matrix multiplication operation). To run the program, you need to install numpy and opencv for python.

Github Repo

Before

After

Read More

Wednesday, 4 January 2023

DSA1 - Insert Delete Search

January 04, 2023 0

DSA - Insert Delete Search

Code in C++

Read More

Tuesday, 18 October 2022

Solving Simultaneous Equation with Cramer's rule, Inverse Matrix, and Gaussian Elimination

October 18, 2022 0

Eong Koungmeng ITE-G8-A2 Solving Simultaneous Equation

Read More

Tuesday, 4 October 2022

Iterative Technique in C++

October 04, 2022 0

About Program

This program uses iterative technique such as Jacobi's method and Guass-Seidel's method to calculate simultaneous equations. Users can input the number of iterations and change the equations in the code.

The output

Read More

Guassian Elimination in C++

October 04, 2022 0

About Program

This program can calculate Guassian Elimination of any matrix size. It can solve simultaneous equations, inverse matrices and much more.

The output

Read More

Matrix Inverse with C++

October 04, 2022 0

About Program

This program can calculate the inverse of square matrices. Users can input the matrix line by line and seperate the columns with space. The method used to calculate the inverse matrix are 1. calculate the determinant of the matrix then 2. take the adjoint of the matrix and 3. divide each element of the adjointed matrix by the determinant.

The output

Read More

Calculating Matrix Determinant with C++

October 04, 2022 0

About Program

This program can calculate the determinant of any square matrix. I used the STL(std::vector) to store the matrices. To calculate the determinant, I used recursive function concept.

The output

Read More

Post Top Ad