MATLAB: How to find a linear parameter within a matrix by khowing some of its eigenvalues

eigen values

Note the order of Matrix is 1000*1000.

Best Answer

My matrix have the form of
syms s
A=rand(1000);
B=s*rand(1000);
C=rand(1000);
M=[A,B;B,C];
I think the problem is clear.
I posed this question in maple forum they proposed a method but my machine could not solve it because of high order matrix. I guess, Matlab is powerful in numerical computations, so switched to Matlab. look at;
http://www.mapleprimes.com/questions/221584-How-To-Find-A-Linear-Parameter-Within
Related Question