필터 지우기
필터 지우기

The title of a plot containing the data's file name.

조회 수: 5 (최근 30일)
William Harris
William Harris 2020년 4월 2일
답변: Peng Li 2020년 4월 2일
I have a program that allows the user to select a set of data in a txt file. This data is then plotted. I was wondering as to how I can get the name of the data file to appear in the title of that plot.
[filename]=uigetfile('*.txt')
%Loading the data the user has selected.
Data=load(filename);
%read file and make 3 colunm vectors
Easting_Data=Data(:,1);
Northing_Data=Data(:,2);
Depth_Data=Data(:,3);
%plotting the original unfiltered data for the user to view.
plot3(Easting_Data,Northing_Data,Depth_Data,'.')
view(2)
%HOW CAN I GET FILENAME TO APPEAR BELOW AFTER THE STATEMENT
title('UTM Position of the data in file')

채택된 답변

Peng Li
Peng Li 2020년 4월 2일
You have filename already when you load the data. Just need to combine this with the char array you have. Try
title(['UTM Position of the data in file ' filename]);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Labels and Annotations에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by