I have a sequence of matrices I've created like this:
for i=1:n
Real{i}=Real_Trans^i;
Trans{i}=Trans_Est^i;
R{i}=abs(Real{i}-Trans{i});
end
where the user inputs n. Now, I want to plot lines for each element of every matrix R{i}. So, for example, let's take element (1,1). I need to get (1,1) from each matrix and make a line with them. Another line for all (1,2)'s. And keep going like that.
Thanks in advance !