#Pytonspoint #BasicPythonprogramming
How to find Transpose of a matrix using python programming..
Input:
X = [ [12 , 7 ] ,
[ 4 , 5 ] ,
[ 3 , 8 ] ]
Output:
Transpose of matrix X[ ]
X` = [ 12, 4, 3 ]
[ 7, 5 , 8 ]
Please Subscribe My Channel
/ @pythonspoint1228
Thanks for watching..