Posts by talesaraujo • 55 points
2 posts
-
3
votes2
answers2354
viewsQ: Concatenate arrays using numpy module
One question, for the solution of linear systems: how to concatenate an array (matrix) A, an array (column vector) b, so that one has the "augmented" matrix of the system, A~ = [A b], using numpy?…
-
2
votes1
answer6338
viewsQ: Python matrix manipulation with numpy module
How do I exchange lines of matrices, using numpy? I need this to implement the Gauss-Jordan method of linear systems solution with partial pivoting.