How to plot this type of function?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1087235/image.png)
2 comentarios
Walter Roberson
el 4 de Ag. de 2022
Strange, I could have sworn I saw someone post code for this involving fplot3()
Respuestas (1)
KSSV
el 4 de Ag. de 2022
Editada: KSSV
el 4 de Ag. de 2022
t = linspace(-5,5) ;
x = exp(t) ;
y = 1-exp(-t) ;
z = atan2(y,x) ;
plot(t,z)
3 comentarios
Walter Roberson
el 4 de Ag. de 2022
Note that atan(y./x) is usually better done as atan2(y, x) . The difference is that atan2() will get the right quadrant.
KSSV
el 4 de Ag. de 2022
Editada: KSSV
el 4 de Ag. de 2022
@Walter Roberson agree.....edited the code.
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!