python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Not getting expected output when calculating eigenvectors
I was trying out numpy.linalg.eig and the output wasn't as predicted
Ax = λx where
A is a matrix
λ is eigenvalue
x is eigenvector
Here's the code
import numpy as np
from numpy import linalg
A = np....

SleepingInPeace
Votes: 0
Answers: 1
Solving two unknown parameter ode using solve_bvp in python
I am trying to solve a system of linear ODEs with two unknown parameters using Python. But I am facing some problems. Below is my code:
import numpy as np
from scipy.integrate import solve_bvp, solve_...
GAURAV MAURYA
Votes: 0
Answers: 0
A function to compute the eigenvalues in R when some are repeated
Following this post and more specifically this answer, I am trying to build from scratch an eigen() function in R to compute eigenvalues and eigenvectors. However, I have stumbled accross the problems...
POC
Votes: 0
Answers: 1
Can python sparse solve a few eigenvalues specified by index range?
I need to solve a few eigenvalues of a large matrix specified by their indices. These indices are according to the whole eigenspectrum sorted in algebraic (not absolute value) ascending order.
I notic...
xiaohuamao
Votes: 0
Answers: 0