Technical discussion about Matlab and issues related to Digital Signal Processing.
Hi everyone, I have successfully used the code below to export an avi file. The problem I am having is that the avi file that is exported does not include the axes (labels or values corresponding to the tickmarks) and does not include the plot title. I was wondering if there is some way to change the code to make the exported avi file include the axis labels, axis values, and chart title. Thanks in advance for any help. Sincerely, Morgan for i=1:t %t is previously defined %An m by n matrix Z is created for each iteration, %where m is length(y) and n is length(x). A=contourf(x,y,Z); %The contourf plot of each iteration is a different frame. F(i)=getframe; aviobj=addframe(aviobj,[F(i)]); end aviobj=close(aviobj);