how can i plot this equation?
1 回表示 (過去 30 日間)
古いコメントを表示
how can i plot this equation?
x=0.1:1
y= x^3 ln (1/x)
0 件のコメント
採用された回答
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 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!