how can i plot this equation?

4 views (last 30 days)
hassan elkholy
hassan elkholy on 12 Dec 2020
Commented: Ive J on 12 Dec 2020
how can i plot this equation?
x=0.1:1
y= x^3 ln (1/x)

Accepted Answer

Ive J
Ive J on 12 Dec 2020
Please first try to search in answers or simply Google it.
% doc plot
x = 1:10;
y = x.^3;
plot(x, y)

More Answers (0)

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!