Is there an easy way to divide each matrix element by the column sum? For example:
input:
1 4
4 10
output:
1/5 4/14
4/5 10/14
|
Is there an easy way to divide each matrix element by the column sum? For example:
|
||||
|
|
|
Here's a list of the different ways to do this ...
|
|||||||||||||||||
|
|
Couldn't resist trying a list comprehension. If this matrix was represented in a row-major list of lists, try this:
Yes, I know that this is not super-efficient, as we compute the column sums once per row. Saving this in a variable named colsums looks like:
Note that zip(*A) gives transpose(A). |
|||||||
|