Borrar filtros
Borrar filtros

display values in the title of a figure

3 visualizaciones (últimos 30 días)
Asl
Asl el 4 de Nov. de 2013
Editada: Jan el 4 de Nov. de 2013
title({'Mean', mean(mean(aa(:,:)))})
display the word "Mean" and value mean(mean(aa(:,:))) in 2 different rows on the titlt of the figure
how can I display both in the same row? Thanks

Respuestas (1)

Jan
Jan el 4 de Nov. de 2013
Editada: Jan el 4 de Nov. de 2013
title(['Mean', num2str( mean(mean(aa(:,:)))) ])
or shorter:
title ( ['Mean ', num2str( mean( aa(:) ) ) ] );

Categorías

Más información sobre Graphics Object Programming en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by