Exa15.m
上传用户:eighthdate
上传日期:2014-05-24
资源大小:270k
文件大小:0k
源码类别:

其他行业

开发平台:

Matlab

  1. t=0:.005:3;
  2. c = 1+ exp(-2*t).*sin(8*t - pi/2);
  3. [cp, k] = max(c)   % cp is the maximum value of c at interval k
  4. tp = t(k)                                 % tp is the peak time
  5. plot(t, c), xlabel(' t,  sec'), ylabel('c'), grid
  6. title('Damped sine curve')
  7. text(0.55,1.35,['cp = ',num2str(cp)])%Text in quote & the value 
  8.      % of cp are printed on the graph at the specified location
  9. text(0.55, 1.2,['tp = ',num2str(tp)])
  10. % use of ginputcommand
  11. % [tp, cp] = ginput