how can i plot this equation?

4 ビュー (過去 30 日間)
hassan elkholy
hassan elkholy 2020 年 12 月 12 日
コメント済み: Ive J 2020 年 12 月 12 日
how can i plot this equation?
x=0.1:1
y= x^3 ln (1/x)

採用された回答

Ive J
Ive J 2020 年 12 月 12 日
Please first try to search in answers or simply Google it.
% doc plot
x = 1:10;
y = x.^3;
plot(x, y)
  2 件のコメント
hassan elkholy
hassan elkholy 2020 年 12 月 12 日
y = x^3 * ln (1/x)
Ive J
Ive J 2020 年 12 月 12 日
y = x.^3.*log(1./x);

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

その他の回答 (0 件)

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by