How do I plot a tent-map?

10 ビュー (過去 30 日間)
Sergio
Sergio 2024 年 3 月 26 日
回答済み: Stephen23 2024 年 3 月 26 日
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 件のコメント
Dyuman Joshi
Dyuman Joshi 2024 年 3 月 26 日
And how would T_2^n be defined?
Sergio
Sergio 2024 年 3 月 26 日
編集済み: Sergio 2024 年 3 月 26 日
@Dyuman Joshi I think by
are iterations, not differentiations.

サインインしてコメントする。

採用された回答

Stephen23
Stephen23 2024 年 3 月 26 日
"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)

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSurface and Mesh Plots についてさらに検索

製品


リリース

R2024a

Community Treasure Hunt

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

Start Hunting!

Translated by