[PR #524] Numerical methods #948

Closed
opened 2026-01-29 15:16:24 +00:00 by claunia · 0 comments
Owner

Original Pull Request: https://github.com/TheAlgorithms/C/pull/524

State: closed
Merged: Yes


Whats new

Numerical Algorithms

  1. Durand Kerner method to compute real and complex roots of any polynomial with real coefficients.
  2. QR decomposition for matrix with real elements.
  3. Compute real Eigen values of a square matrix using QR-decomposition.

Sorting Algorithms

  1. Added another implementation for shell-sort.

Online compile and run code

All the code can be executed and tested online: using Google Colab Notebook

**Original Pull Request:** https://github.com/TheAlgorithms/C/pull/524 **State:** closed **Merged:** Yes --- # Whats new ## Numerical Algorithms 1. [Durand Kerner method](https://en.wikipedia.org/wiki/Durand–Kerner_method) to compute real and complex roots of any polynomial with real coefficients. 2. [QR decomposition](https://en.wikipedia.org/wiki/QR_decomposition) for matrix with real elements. 3. Compute real Eigen values of a square matrix using QR-decomposition. ## Sorting Algorithms 1. Added another implementation for shell-sort. ## Online compile and run code All the code can be executed and tested online: [![using Google Colab Notebook](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/gist/kvedala/27f1b0b6502af935f6917673ec43bcd7/plot-durand_kerner-log.ipynb)
claunia added the pull-request label 2026-01-29 15:16:24 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#948