[PR #881] [CLOSED] Matrix determinant #1397

Open
opened 2026-01-29 15:20:08 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/881
Author: @william-hazem
Created: 10/13/2021
Status: Closed

Base: masterHead: master


📝 Commits (10+)

📊 Changes

4 files changed (+74 additions, -0 deletions)

View changed files

.replit (+2 -0)
geometry/matrix_3.c (+23 -0)
matrix (+0 -0)
numerical_methods/factorial_n.c (+49 -0)

📄 Description

Added Cramer's Algorithm for a 3x3 Matrix

  • Cramer's Alg implementation based on <matrix_3x3> data struct


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/TheAlgorithms/C/pull/881 **Author:** [@william-hazem](https://github.com/william-hazem) **Created:** 10/13/2021 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (10+) - [`b156c89`](https://github.com/TheAlgorithms/C/commit/b156c894da69f20bb03266d74fc30a368aaa83ac) Matrix determinant - [`4192a72`](https://github.com/TheAlgorithms/C/commit/4192a727975eb48737c38555e8b93793bdf0cdde) factorial function - [`97ef8e1`](https://github.com/TheAlgorithms/C/commit/97ef8e1dd230fedaee279daaf543994ce6dcb740) Doxgen header fixed - [`fb692af`](https://github.com/TheAlgorithms/C/commit/fb692af135aa155e765eb7f7d1eea08dc950d50e) Merge branch 'TheAlgorithms:master' into master - [`b464868`](https://github.com/TheAlgorithms/C/commit/b4648687da0d5195635557da523092f44dc9eea6) pr changes - [`dd085e5`](https://github.com/TheAlgorithms/C/commit/dd085e5478023bd77b5e13058c58286cf1070920) PR changes - [`a098531`](https://github.com/TheAlgorithms/C/commit/a098531c861037c62a7a55aeec82712b998477a5) Update CMakeLists.txt - [`88e8247`](https://github.com/TheAlgorithms/C/commit/88e8247f08503d58fe975fa8bc438559e577d0d3) Update numerical_methods/factorial_n.c - [`9a126d9`](https://github.com/TheAlgorithms/C/commit/9a126d99a262c78ca49b33636948a91ea8d812da) Update numerical_methods/factorial_n.c - [`7b33433`](https://github.com/TheAlgorithms/C/commit/7b33433fa15a16e3a2f01c89370f85f27f4be271) Update numerical_methods/factorial_n.c ### 📊 Changes **4 files changed** (+74 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `.replit` (+2 -0) ➕ `geometry/matrix_3.c` (+23 -0) ➕ `matrix` (+0 -0) ➕ `numerical_methods/factorial_n.c` (+49 -0) </details> ### 📄 Description #### Added Cramer's Algorithm for a 3x3 Matrix - Cramer's Alg implementation based on <matrix_3x3> data struct <a href="https://gitpod.io/#https://github.com/TheAlgorithms/C/pull/881"><img src="https://gitpod.io/button/open-in-gitpod.svg"/></a> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 15:20:08 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1397