Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have one question. I have this matrix: matrix=numpy.array([[1,6,3],[11,8,89],[7,3,1]])

and I wrote this little script:

import os import sys import numpy

matrix=numpy.array([[1,6,3],[11,8,89],[7,3,1]])

print matrix[0],'\n',(matrix[0]*matrix[1][0]-matrix[1]),'\n',(matrix[0]*matrix[2][0]-matrix[2])*(matrix[0]*matrix[1][0]-matrix[1])[1]-(matrix[0]*matrix[1][0]-matrix[1])*(matrix[0]*matrix[2][0]-matrix[2])[1]

The result of this script is: [1 6 3] [ 0 58 -56] [ 0 0 3344]

Ok now I want to create some for cycle(or cycles) in print function.So I have object matrix[] and instead of numbers in square brackets would like to arguent of the cycle.

for example:

matrix=numpy.array([[1,6,3],[11,8,89],[7,3,1]])

for i in range (0,3):
    for j in range (1,2):
        print matrix[i][j]

thank you for answer

share|improve this question
1  
What's the question? Why did you put triangular matrix in the title if you don't mention it in the question? – Bakuriu Feb 11 at 17:53
I dont understand your note. I have script which compute triangual matrix 3x3. My question is how to generalize the computation. In print I have object matrix[] and I dont have numbers in [] but I want some argument from for cycle – castor_pollux Feb 11 at 18:04
Yes, but what are you doing to make the matrix triangular? For what you said(nothing) you could simply do matrix[i][j] = 0 for some choosen i and j and be done. Explain the purpose of what you are doing and we may be able to help you. – Bakuriu Feb 11 at 19:14
I have a concrete matrix and with print function I get concrete triangular matrix. Now I want the general matrix for example numpy.array = matrix ([[a11, a12, ... a1j], [A21, a22, ..., a2j], ..., [ai1, ai2, ..., aij ]]) to do the same but do not know how I have changed in the print function numbers in [] in the general indexes – castor_pollux Feb 11 at 19:41
It looks like you are doing row reduction to get the row echelon form of the matrix (en.wikibooks.org/wiki/Linear_Algebra/…). Is that correct? – Warren Weckesser Feb 12 at 12:57

closed as not a real question by interjay, oefe, Mario, dreamlax, Steven Penny Mar 14 at 0:13

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

As best I can understand your question, you are asking about generating the upper triangular matrix of a matrix (but your code to generate this in the earlier example was a complete mystery).

This can be accomplished with the following indexing of your for loop:

for i in range(0,n):
  for j in range(i,n):
    print matrix[i][j]

Alternately, you could accomplish the same thing with some numpy builtins:

import numpy as np
print matrix.ravel()[np.nonzero(np.ravel(np.triu(matrix)))]

or if you don't care about having precisely the same output just

print np.triu(matrix)
share|improve this answer
Thank you but this is not what i want...when you run my code at first part of this discusion you get from matrix=numpy.array([[1,6,3],[11,8,89],[7,3,1]]) triangual matrix [1 6 3] [ 0 58 -56] [ 0 0 3344]. This triangual matrix is making by expression for print. My question is how i get triangual matrix when for example matrix=numpy.array([[1,6,3,2],[11,8,89,5],[7,3,1,4],[5,6,9,8]]). The expression for print is made for matrix 3 x 3. I want to generate this expression for n x n matrix (for example with help for cycle).Sorry for my English – castor_pollux Feb 11 at 22:59
I am not sure what you mean by "triangular matrix" then. You probably mean a specific computation on a matrix, but it isn't called "triangular." – aestrivex Feb 12 at 16:05

Not the answer you're looking for? Browse other questions tagged or ask your own question.