0
How to inverse a matrix in python?(1 dimensional,1*1)
Urgent
2 Respostas
+ 3
why is it urgent?
do your life depends on getting the answer quickly?
"urgent" is not a proper question description...
proper question description should provide your code attempt link and explain where you stuck at solving the task by yourself ^^
+ 2
The inverse of a one-dimensional matrix means that the matrix is 1 x 1, or a single element. This means that as long as the element is non-zero, its determinate is itself, and its inverse is the reciprocal of the element itself.
ex.
[4]
inverse equals
[1/4]
[24]
inverse equals
[1/24]