필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

how do i make the size of the strings appear bigger in plot

조회 수: 1 (최근 30일)
Benjamin Cowen
Benjamin Cowen 2016년 2월 7일
마감: MATLAB Answer Bot 2021년 8월 20일
n = [10e21,10e18,10e27,10e36,10e32];
kt = [10000, 10, 1000, 10, 10^5];
loglog(kt,n,'go')
strings = {' reactor', ' point 1',' point 2',' point3',' point4'}
for ind = 1:length(n)
text(kt(ind),n(ind),strings{ind})
end

답변 (1개)

Jan
Jan 2016년 2월 7일
By defining a larger font size:
text(kt(ind), n(ind), strings{ind}, 'FontSize', 16)

이 질문은 마감되었습니다.

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by