From: mohamed amin on 30 Apr 2010 18:55 i need acode that can get the inversion of amatrix using gaussian elimination
From: EE Student on 30 Apr 2010 20:17 "mohamed amin" <mohamedamin45(a)yahoo.com> wrote in message <hrfn4p$6pe$1(a)fred.mathworks.com>... > i need acode that can get the inversion of amatrix using gaussian elimination What have you got so far? Where are yo having problems?
From: Steven Lord on 3 May 2010 10:44 "mohamed amin" <mohamedamin45(a)yahoo.com> wrote in message news:hrfn4p$6pe$1(a)fred.mathworks.com... >i need acode that can get the inversion of amatrix using gaussian >elimination If you're planning to use this function to solve a system of linear equations A*x=b by computing inv(A) and then computing x = inv(A)*b, you should not do this. Use the backslash operator instead. If you need to do this because it was assigned to you as homework in a linear algebra or numerical analysis class, you will need to show what you've done to solve the problem yourself and ask for SPECIFIC help, as the general policy of the newsgroup is not to provide code for homework but to provide assistance with the homeworker's code. -- Steve Lord slord(a)mathworks.com comp.soft-sys.matlab (CSSM) FAQ: http://matlabwiki.mathworks.com/MATLAB_FAQ
|
Pages: 1 Prev: Convert shapefiles to georeference raster Next: How to call a C program in Simulink? |