Locate Y given X and display on the graph

2 ビュー (過去 30 日間)
RuiQi
RuiQi 2014 年 12 月 30 日
回答済み: RuiQi 2014 年 12 月 30 日
Hello ,
I have been trying to display the value of X and Y given either X or Y on my graph but am unable to do so. I would also like to be able to add in additional info/text and be able to re-size the box. The following was done through of the Data Cursor function which is not accurate. Please help , thanks.
Regards , Haziq

回答 (5 件)

Ilham Hardy
Ilham Hardy 2014 年 12 月 30 日
You can 'extract' the Data Cursor information to workspace for more accurate number. Right click on the data cursor point >> Export cursor data to workspace.

RuiQi
RuiQi 2014 年 12 月 30 日
Hello ,
Thanks for the response but what I meant was e.g. I would like to find the value of Y when X = 0.3. I have done so by sliding the Data Cursor along the graph to get as close as I can to 0.3 which is not accurate. I apologize for not being clear with my words.
Regards , Haziq
  1 件のコメント
Sean de Wolski
Sean de Wolski 2014 年 12 月 30 日
To do this correctly, you'd have to get the x/y data from the line and then use interp1 to get you the value of y at x == 3.

サインインしてコメントする。


Sean de Wolski
Sean de Wolski 2014 年 12 月 30 日
編集済み: Sean de Wolski 2014 年 12 月 30 日
h = plot(cumsum(rand(1,10)),rand(1,10));
valueICareAbout = 3;
yICareAbout = interp1(h.XData,h.YData,valueICareAbout) % R2014b syntax

Ilham Hardy
Ilham Hardy 2014 年 12 月 30 日
Refering to your description,
If you generate the graph yourself using plot function, then simply interpolates your xpoint to find the applicable ypoint.
Please see,
doc interp1
  2 件のコメント
Sean de Wolski
Sean de Wolski 2014 年 12 月 30 日
Even if not generating the plot yourself, you could use findobj to traverse the graphics tree.
Ilham Hardy
Ilham Hardy 2014 年 12 月 30 日
Yes, very true. (i plan this as 'else' description)

サインインしてコメントする。


RuiQi
RuiQi 2014 年 12 月 30 日
Hello ,
Thanks for the function but it seems to not give the correct answer. The graph was plotted using the step() function.
My student research project requires MATLAB. Im sorry, I thought I could just jump straight into modelling and control after going through the tutorial videos but I guess im wrong. I need to learn MATLAB from scratch. This just feels so new.
Regards , Haziq

カテゴリ

Help Center および File ExchangeSpecifying Target for Graphics Output についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by