graph alignment problem with Plot and Stem
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
hi, i've problem to alignment plot graph with stem graph
all Data have the same size
plot(Ax_Draw,XDates,TDR1)
ST=stem(Ax_Sys,XDates,TCC2)
size(XDates)
ans =
1333 1
ans =
size(TDR1)
1333 1
ans =
size(TCC2)
1333 1
3 comentarios
Respuestas (1)
Guillaume
el 5 de Oct. de 2023
Hello,
Maybe a matter of XLIM on your two different axes ? You can try something like
xlim(Ax_Sys, get(Ax_Draw, 'xlim'))
Ver también
Categorías
Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!