title according to the file name
조회 수: 44 (최근 30일)
이전 댓글 표시
Does anybody know how to (in a plot) put the ‘title’ as the name of the file where the X,Y,Z variables are included? the idea is to generate several and independent plots, based on ‘imagesc’, ‘contolchart’ and other plotting functions. Thanks.
댓글 수: 4
John Ostrander
2022년 3월 24일
@Rik I am looking for something similar. There is a python code for it (I am learning both and very much a newbie) but in my case and I suspect the qeustion is the same:
C:\path\morepath\.......\filename.csv some of my files are buried deep in the file structure.
Strip "filename" from this automatically and insert it as the graph title.
I work with many files, and many graphs look alike. This would save time.
Rik
2022년 3월 24일
The fileparts function should do what you need:
[p,f,e]=fileparts('C:\path\morepath\filename.csv')
%(these results are on Linux, on Windows you should get this)
채택된 답변
Constantino Carlos Reyes-Aldasoro
2021년 4월 15일
Perhaps you want to add values to the titles of your figures, try something like this
for k=1:9
subplot(3,3,k)
title(strcat('Subplot number =',num2str(k)))
end
If this does not answer your question, we would need more information.
댓글 수: 1
Adam Danz
2021년 4월 15일
or,
title(['Subplot number = ', num2str(k)])
or,
title(sprintf('Subplot number = %d', k))
참고 항목
카테고리
Help Center 및 File Exchange에서 Title에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!