fig5_7.m
上传用户:szahd2008
上传日期:2020-09-25
资源大小:1275k
文件大小:0k
源码类别:

传真(Fax)编程

开发平台:

Matlab

  1. % Use this program to reproduce Fig 5.7 from text
  2. clear all
  3. close all
  4. n = 0;
  5.  for x = 0:.075:4
  6.      n = n+1;
  7.      sx(n) = quadl('fresnels',.0,x);
  8.      cx(n) = quadl('fresnelc',.0,x);
  9. end
  10.  plot(cx)
  11.  x=0:.075:4; 
  12.  plot(x,cx,'k',x,sx,'k--')
  13.  grid
  14.  xlabel ('x')
  15.  ylabel ('Fresnel integrals: C(x); S(x)')
  16.  legend('C(x)','S(x)')
  17.