Program to display the upper triangular matrixExplanationIn this program, we need to display the upper triangular matrix. Upper Triangular MatrixUpper triangular matrix is a square matrix in which all the elements below the principle diagonal are zero. To find the upper triangular matrix, a matrix needs to be a square matrix that is, the number of rows and columns in the matrix needs to be equal. Dimensions of a typical square matrix can be represented by n x n. Consider the above example, principle diagonal element of given matrix is (1, 6, 6). All the elements below diagonal needs to be zero to convert it into an upper triangular matrix, in our example, those elements are at positions (2,1), (3,1) and (3,2). To convert given matrix into the upper triangular matrix, loop through the matrix and set the values of the element to zero where row number is greater than column number. Algorithm
SolutionPythonOutput: Upper triangular matrix: 1 2 3 0 6 4 0 0 6 COutput: Upper triangular matrix: 1 2 3 0 6 4 0 0 6 JAVAOutput: Upper triangular matrix: 1 2 3 0 6 4 0 0 6 C#Output: Upper triangular matrix: 1 2 3 0 6 4 0 0 6 PHPOutput: Upper triangular matrix: 1 2 3 0 6 4 0 0 6 Next Topic# |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India