How to extract X value given Y value from graph.
Show older comments
I want to find x value given y value,
%Finding X value with known Y value on plot
clc; clear all; close all;
x= 0:0.01:5;
y= [0.2 0.4 0.7 0.9 1.0]
[X, Y] = meshgrid(x);
A = ((1)./(1+5.*((x-5).^2)));
B = (2.^(-x));
C = ((2.*x)./(x+5));
plot(x, A, 'DisplayName', 'A')
hold on
plot(x, B, 'DisplayName', 'B')
hold on
plot(x, C, 'DisplayName', 'C')
hold on
title('A - B - C')
legend
2 Comments
ulas can ozak
on 11 Dec 2022
Answers (1)
%Finding X value with known Y value on plot
clc; clear all; close all;
x= 0:0.01:5;
y= [0.2 0.4 0.7 0.9 1.0]
[X, Y] = meshgrid(x);
A = ((1)./(1+5.*((x-5).^2)));
B = (2.^(-x));
C = ((2.*x)./(x+5));
ABC = [A; B; C];
for k = 1:size(ABC,1)
xv(k,:) = interp1(ABC(k,:), x, y);
yv(k,:) = interp1(x, ABC(k,:), xv(k,:));
end
xv
yv
plot(x, A, 'DisplayName', 'A')
hold on
plot(x, B, 'DisplayName', 'B')
hold on
plot(x, C, 'DisplayName', 'C')
hold on
plot(xv, yv, 's', 'DisplayName','Intersections')
title('A - B - C')
legend('Location','eastoutside')
plot(x,ones(numel(x),1)*y, ':k', 'DisplayName','Y Vector')
axis('padded')
.
2 Comments
ulas can ozak
on 11 Dec 2022
Star Strider
on 11 Dec 2022
My pleasure!
If my Answer helped you solve your problem, please Accept it!
.
Categories
Find more on Numerical Integration and Differentiation in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!