I am trying to graph this function on matlab?
Can someone please help me?

 Accepted Answer

Chunru
Chunru on 2 Jun 2021
Edited: Chunru on 2 Jun 2021
y = linspace(0, 1e-3, 100);
x = 14/log(2)*log(y./sqrt(1e-6-y.^2)) + 37.119;
plot(y, x)
xlabel('y');
ylabel('x');

3 Comments

Hi! I did what you said, but it graphed x, y the other way around;(
You specified x as a function of y.
If you want to plot other way:
plot(x, y)
xlabel('x');
ylabel('y');
THANK YOU SO MUCH !!

Sign in to comment.

More Answers (0)

Categories

Find more on 2-D and 3-D Plots 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!