About ProgramThis 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.
@import url('https://fonts.googleapis.com/css?family=Droid+Sans+Mono');
body...
Post Top Ad
Post Top Ad
Wednesday, 19 July 2023
Wednesday, 4 January 2023
Tuesday, 18 October 2022
Tuesday, 4 October 2022
Iterative Technique in C++
About ProgramThis 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.
@import url('https://fonts.googleapis.com/css?family=Droid+Sans+Mono');
body...
Calculating Matrix Determinant with C++
About ProgramThis 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.
@import url('https://fonts.googleapis.com/css?family=Droid+Sans+Mono');
body...