How to display a Y value
조회 수: 6 (최근 30일)
이전 댓글 표시
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
채택된 답변
Peter O
2020년 10월 30일
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
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Discrete Data Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
