Graph of sin(10*x*cos(x))
1 view (last 30 days)
Show older comments
How can we represent a graph for a composed function like sin(10*x*cos(x))
0 Comments
Answers (1)
Akihumi
on 9 May 2020
Do you mean something like this?
x = 0:0.01:10;
plot(sin(10.*x.*cos(x)));
2 Comments
See Also
Categories
Find more on Downloads in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!