codinasion-archive / codinasion-monorepo

Community Monorepo
https://codinasion.org
MIT License
52 stars 171 forks source link

[Program]: Write a C# program to find the eigenvectors of a matrix #2342

Open harshraj8843 opened 1 year ago

harshraj8843 commented 1 year ago

Description

Write a C# program to find the eigenvectors of a matrix

The eigenvalues and eigenvectors of a linear transformation are the values and vectors that determine the transformation. The eigenvectors of a matrix A are the vectors v for which the matrix equation Av = λv has a non-trivial solution.

Input  :
1 2 3
4 5 6
7 8 9

Output :
[[-0.23197068724628608, -0.7858302387246789, 0.4082482904638631],
 [-0.5253220933012334, -0.08675134095039447, -0.8164965809277261],
 [-0.8186734993561807, 0.6123275568238899, 0.4082482904638631]]
How to contribute - Save the solution in `program/program/find-the-eigenvectors-of-a-matrix/program/FindTheEigenvectorsOfAMatrix.cs` file
AnjanaSriram commented 8 months ago

Hello, I would like to work o this

Erizon0 commented 1 month ago

!assign