Retrieving one row of text.

조회 수: 1 (최근 30일)
Thomas
Thomas 2012년 12월 9일
Hello,
I have a simple TAB delimited .txt file of the following:
DATE U6RATE U3RATE
1995-01-01 10.2 5.6
1995-02-01 9.9 5.4
1995-03-01 9.9 5.4
My first goal is to have the user input the date in the form: YYYY-MM-01m then retrieve the entire line which leads up to plotting a simple bar plot, U6RATE vs. U3RATE.
I have this so far:
%%choice function
YearPick = {'Please enter a year (YYYY-MM-01): '};
YP = inputdlg(YearPick);
YP = YP{1}
So I've turned it into a char type, but this is where I am stuck. Any help would be appreciated.
  댓글 수: 1
per isakson
per isakson 2012년 12월 9일
편집: per isakson 2012년 12월 9일
Three columns and one header line?
DATE U6RATE U3RATE
1995-01-01 10.2 5.6
1995-02-01 9.9 5.4
1995-03-01 9.9 5.4
Then you want to select an interval in time - not just one row?
"simple bar plot, U6RATE vs. U3RATE". Wouldn't a scatterplot be better?

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Discrete Data Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by