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

 Réponse acceptée

Chunru
Chunru le 2 Juin 2021
Modifié(e) : Chunru le 2 Juin 2021

0 votes

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 commentaires

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

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

Community Treasure Hunt

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

Start Hunting!

Translated by