how can i plot this equation?
4 views (last 30 days)
Show older comments
how can i plot this equation?
x=0.1:1
y= x^3 ln (1/x)
0 Comments
Accepted Answer
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)
2 Comments
More Answers (0)
See Also
Categories
Find more on 2-D and 3-D Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!