Sign in

username:

password:



Not a member?

Search matlab



Search tips

Subscribe to matlab



matlab by Keywords

Atanh | Autocorrelation | Bandpass Filter | C++ | Conv | Database | Deconv | Excel | FFT | Filter | Filtering | FIR | Fourier Transfrom | FSK | Gaussian Noise | Haykin | IFFT | Image | Java | LFSR | LMS | LPC | MEX | OFDM | QPSK | Radix | Random | Sampling | Segmentation | Simulink | Visual Basic | Waveform | Wavelet

Discussion Groups

Discussion Groups | Matlab DSP | using "addframe" to export an avi file

Technical discussion about Matlab and issues related to Digital Signal Processing.

  

Post a new Thread

using "addframe" to export an avi file - mames5 - Jun 4 11:41:08 2008



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);



(You need to be a member of matlab -- send a blank email to matlab-subscribe@yahoogroups.com )