Borrar filtros
Borrar filtros

Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

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

1 visualización (últimos 30 días)
Benjamin Cowen
Benjamin Cowen el 7 de Feb. de 2016
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
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

Respuestas (1)

Jan
Jan el 7 de Feb. de 2016
By defining a larger font size:
text(kt(ind), n(ind), strings{ind}, 'FontSize', 16)

La pregunta está cerrada.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by