How to display a Y value
20 views (last 30 days)
Show older comments
I ploted a line graph with two different lines. I wish to enter a specific x value and display both y values, based on points from the graph. X being YEAR, and the y values being MALE and FEMALE.
3 Comments
Accepted Answer
Peter O
on 30 Oct 2020
For interactive use of the graph, consider use of the datatips functionality. In R2018 and above, if you hover your cursor over the year/point of interest and click, you'll see a datatip show up with the info you want. For earlier releases, there's a toolbar button called "Datatips" that you can switch on to make the cursor do the same thing. You can drag it around to different values or switch between plots.
There's a picture about halfway down: https://www.mathworks.com/help/matlab/ref/matlab.graphics.datatip.datatip.html
If you really want an access/report function, consider something like the function below. You'd have to call it each time and pass in the data from the plot. The first argument is the year of interest, followed by the data.
function reportVal(year, YearVals, MaleVals, FemaleVals)
ix = find(YearVals == year);
if ~isempty(ix)
M = MaleVals(ix);
F = FemaleVals(ix);
fprintf('Year: %u\n', yr);
fprintf('Female: %8.5f\n',F);
fprintf('Male: %8.5f\n',M);
else
fprintf('Year not found.\n')
end
0 Comments
More Answers (0)
See Also
Categories
Find more on Directed Graphs in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!