Documentation of svdplot


Global Index (all files) (short | long) | Local Index (files in subdir) (short | long)


Function Synopsis

svdplot(x,y,lim)

Help text

  set(gca,'YTick',[-.5:.25:.5])

Cross-Reference Information

This function calls

Listing of function svdplot

function svdplot(x,y,lim)
[m,n]=size(x);
[mm,nn]=size(y);
for i=1:3
  subplot(6,1,(2*(i-1)+1))
  plot([1:m],x(:,i));
  ylab=['X MODE ',int2str(i)];
  ylabel(ylab)
  axis([1 m -1*lim lim])
  grid
  subplot(6,1,(2*i))
  plot([1:mm],y(:,i));
  ylab=['Y MODE ',int2str(i)];
  ylabel(ylab)
  axis([1 mm -1*lim lim])
  grid
end