Variable in plot title
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Mepe
el 28 de Mayo de 2020
Comentada: Mepe
el 28 de Mayo de 2020
I would like to store a title of a plot as a variable because of loop programming.
The running variable is P = M_f1. M_f1 is a matrix. But I just want to show the actual name (M_f1) with the variable P in the title.
-> title (P)?
Anyone have an idea?
4 comentarios
Respuesta aceptada
Ameer Hamza
el 28 de Mayo de 2020
Run this example
titles = {'title1', 'title2', 'title3'};
for i=1:3
figure(i)
plot(rand(1,10));
title(titles{i});
end
Más respuestas (0)
Ver también
Categorías
Más información sobre Title 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!