Plotting mean time trends
    2 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    AAS
 el 10 de Mzo. de 2022
  
    
    
    
    
    Comentada: AAS
 el 11 de Mzo. de 2022
            
Hi, 
How do I plot such a figure, I have time dependent information and atleast 3 per group but I would love some guidance on how to plot these types of figures.
Thanks
0 comentarios
Respuesta aceptada
  yanqi liu
      
 el 11 de Mzo. de 2022
        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-')
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


