フィルターのクリア

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