|
|
(Non)-linear system of equation, overdetermined
Hello all, I have to solve a system of linear equations, with a particular condition.
My system is in the classical form:
A*x=b
By the way I want that norm(x)=1.
So, I've thought, if I add to matrix A a final row x' I will obtain my condition, I explain in MATLAB code:
newA=[A;x']; newB=[b;1];
newA*x=newB
At this point I'm in the case that I've more equations than unknowns.
I can easily solve this problem with fmincon or other sort of non-linear solutor.
The problem is that now I have to invert newA (with pinv) which contains unknowns.
I was wondering if exists a more straigth forward method (maybe involving symbolic toolbox?) to avoid the use of a non-linear solutor of the problem.
Any hint?
Thank you.
|
|
0
|
|
|
|
Reply
|
Luca
|
5/12/2010 1:10:21 PM |
|
I've tried to look about linprog or lsqlin, but seems that there is no way to find solution to this problem in this way.
|
|
0
|
|
|
|
Reply
|
Luca
|
5/12/2010 2:07:04 PM
|
|
Please see this thread:
http://www.mathworks.com/matlabcentral/newsreader/view_thread/263115
Bruno
|
|
0
|
|
|
|
Reply
|
Bruno
|
5/12/2010 2:38:04 PM
|
|
"Bruno Luong" <b.luong@fogale.findmycountry> wrote in message <hseegc$lt0$1@fred.mathworks.com>...
> Please see this thread:
>
> http://www.mathworks.com/matlabcentral/newsreader/view_thread/263115
>
> Bruno
Thank you so much! I've tried to look in previous posts before I've posted, but I didn't find this one. Thank you very much.
|
|
0
|
|
|
|
Reply
|
Luca
|
5/12/2010 2:51:04 PM
|
|
|
3 Replies
379 Views
(page loaded in 0.213 seconds)
Similiar Articles: Overdetermined equation system - comp.soft-sys.matlabsolving the system of non linear equation - comp.soft-sys.matlab ... Overdetermined equation system - comp.soft-sys.matlab Hello, I have a system of equations that I would ... constraints in system of non-linear equations - comp.soft-sys ...Hi, I'm trying to solve a system of 3 non-linear equations (using fsolve), and I need to impose restrictions on the each of the unknowns. Is there ... Solving 2 non linear equations with 2 unknown - comp.soft-sys ...Overdetermined equation system - comp.soft-sys.matlab Solving an Overdetermined System of Equations - comp.soft-sys ... Solving 2 non linear equations with 2 unknown ... Systems of linear equations with HP35S - comp.sys.hp48(Non)-linear system of equation, overdetermined - comp.soft-sys ... Hello all, I have to solve a system of linear equations, with a particular condition. Solving linear programming equations using linprog - comp.soft-sys ...(Non)-linear system of equation, overdetermined - comp.soft-sys ... I've tried to look about linprog or lsqlin, but seems ... Solving 2 non linear equations with 2 unknown ... About solving a non linear equation, fzero - comp.soft-sys.matlab ...Overdetermined equation system - comp.soft-sys.matlab Solving a system of equations in ... How to Solve a Non-Linear System of Equations ... non linear equation, fzero ... Matlab program to solve wave equation up to linear system of ...solving the system of non linear equation - comp.soft-sys.matlab ... Matlab program to solve wave equation up to linear system of ... Solving 2 non linear equations with 2 ... solving two unknowns in two non linear equations - comp.soft-sys ...Solving a linear overdetermined system with 8 unknowns - comp.soft ... Solve a maze with MATLAB! - comp.soft-sys.matlab Solving 2 non linear equations with 2 unknown ... parabolic, nonlinear pde - comp.soft-sys.matlab(Non)-linear system of equation, overdetermined - comp.soft-sys ... parabolic, nonlinear pde - comp.soft-sys.matlab I have a nonlinear ~parabolic PDE coupled to a linear ... Jacobians for Gauss-Newton - comp.soft-sys.matlab(Non)-linear system of equation, overdetermined - comp.soft-sys ... Jacobians for Gauss-Newton - comp.soft-sys.matlab... ve once again become interested in methods to solve ... Overdetermined system - Wikipedia, the free encyclopediaIn mathematics, a system of linear equations is considered overdetermined if there are more equations than ... registered trademark of the Wikimedia Foundation, Inc., a non ... Systems of Linear Equations :: Linear Algebra (MATLABĀ®)Solving systems of linear equations ... Overdetermined Systems Using Multithreaded Computation with Systems of Linear Equations ... Cell Arrays with Non ... 7/24/2012 8:54:00 AM
|
|
|
|
|
|
|
|
|