I have two matrics, A and X:
|2 -1| = A and |x| = X
|-1 2| |y|
Now, I want to plot all the resulting plots as a matplotlib plot. For example something similar to this loop:
for x in range(1,100)
for y in in range(1,100)
But, what I specifically like is an animation. So, I can see as each point is being plotted. Sp first the X
matrix will be 1,1
then 1,2
all the way to 100,100
. If the question is not clear, please ask for a clarification.