How to change grid dot-lines looks better?
조회 수: 19 (최근 30일)
이전 댓글 표시
How to change the line style of the grid? I've changed the GridAlpha attribute but it doesn't looks like other scientific papers. What are the attributes of the Grid?
댓글 수: 0
답변 (2개)
Asad (Mehrzad) Khoddam
2016년 10월 12일
편집: Asad (Mehrzad) Khoddam
2016년 10월 12일
Try this code ax = gca; ax.GridLineStyle = '-'
Fernando Villarreal
2021년 9월 24일
t=datos(:,1);
datos=[45 23 135 54 86 96 75 12 36 15 10 9 7];
y=datos(:,2);
plot(t,y,':');grid
val1=size(y)-10
val2=size(y)
ssData=y(val1:1:val2)
Deltay=mean(ssData)
porcTiempo1=DeltaY*0.283
porcTiempo2=DeltaY*0.632
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!