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
triangular matrixin the title if you don't mention it in the question? – Bakuriu Feb 11 at 17:53matrix[i][j] = 0for some chooseniandjand be done. Explain the purpose of what you are doing and we may be able to help you. – Bakuriu Feb 11 at 19:14