LineWidth プロパティの値を変更しても線の太さが変わらないのはなぜですか?
이전 댓글 표시
以下のコードで二つの SUBPLOT を作成しています。二つの図中の線は異なった太さを指定していますが、同じ太さになっています。この理由を教えてください。
subplot(2,1,1)
h1 = plot(1:10);
set(h1,'LineWidth',1.1)
subplot(2,1,2)
h2 = plot(1:10);
set(h1,'LineWidth',1.4)
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 座標軸の外観에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!