How do I plot a tent-map?
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Sergio
el 26 de Mzo. de 2024
Respondida: Stephen23
el 26 de Mzo. de 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 comentarios
Respuesta aceptada
Stephen23
el 26 de Mzo. de 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)
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Surface and Mesh Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!