How do I plot a tent-map?

17 views (last 30 days)
Sergio
Sergio on 26 Mar 2024
Answered: Stephen23 on 26 Mar 2024
I have to plot the given function
on the unit interval. How can I do that? I didn't find any useful answers on MATLAB to even start the plotting procedure of the piecewise linear function.
Thanks
  4 Comments
Dyuman Joshi
Dyuman Joshi on 26 Mar 2024
And how would T_2^n be defined?
Sergio
Sergio on 26 Mar 2024
Edited: Sergio on 26 Mar 2024
@Dyuman Joshi I think by
are iterations, not differentiations.

Sign in to comment.

Accepted Answer

Stephen23
Stephen23 on 26 Mar 2024
"How do I plot a tent-map?"
Following the basic definition of tent map:
X = 0:0.01:1;
Y = min(2*X,2-2*X);
plot(X,Y)

More Answers (0)

Products


Release

R2024a

Community Treasure Hunt

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

Start Hunting!