Plotting mean time trends
    조회 수: 2 (최근 30일)
  
       이전 댓글 표시
    
채택된 답변
  yanqi liu
      
 2022년 3월 11일
        yes,sir,may be use data to fill area,such as
x = 0:0.2:10;                     
y = besselj(0, x);
xconf = [x x(end:-1:1)] ;         
yconf = [y+0.15 y(end:-1:1)-0.15];
p = fill(xconf,yconf,'r','FaceColor',[1 0.8 0.8],'EdgeColor','none');
hold on
plot(x,y,'ro-')
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!



