Displaying the name of the moving text file in the animation

3 visualizaciones (últimos 30 días)
Eng.
Eng. el 1 de Jun. de 2023
Editada: chicken vector el 1 de Jun. de 2023
Hello;
I created an animation using 10 different txt files; however, I want to see the name of the txt file that has the image in the txt file on the screen at that moment. How can I do that. Thank you in advance

Respuestas (1)

chicken vector
chicken vector el 1 de Jun. de 2023
Editada: chicken vector el 1 de Jun. de 2023
Suppose you import the conent of the .txt files by doing:
filename = 'FrameXX.txt';
framData = readmatrix(filename);
Then the three most common ways of displaying a text are:
frameName = extractBefore(filename, '.txt');
figure;
title(frameName);
annotation('TextBox', [.45 .65 .1 .1], 'String', frameName, 'FitBoxToText', 'On');
text(.45, .9, frameName);

Categorías

Más información sobre View and Analyze Simulation Results en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by