フィルターのクリア

How to graph log function?

2 ビュー (過去 30 日間)
Thi Thai HA Vu
Thi Thai HA Vu 2021 年 6 月 2 日
コメント済み: Thi Thai HA Vu 2021 年 6 月 2 日
I am trying to graph this function on matlab?
Can someone please help me?

採用された回答

Chunru
Chunru 2021 年 6 月 2 日
編集済み: Chunru 2021 年 6 月 2 日
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 件のコメント
Chunru
Chunru 2021 年 6 月 2 日
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 2021 年 6 月 2 日
THANK YOU SO MUCH !!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Distribution Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by