I need help with creating bounded logarithmic plot

1 Ansicht (letzte 30 Tage)
Adam Szablewski
Adam Szablewski am 9 Jun. 2021
Beantwortet: Joel Lynch am 9 Jun. 2021
I need help with creating bounded logarithmic plot with:
x=e^-1, y=t, 0<t<2pi
Can someone please solve this?

Antworten (1)

Joel Lynch
Joel Lynch am 9 Jun. 2021
Assuming you meant to have , then
t = linspace(0,2*pi);
x = exp(-t); % if constant, then x(1:numel(t))=exp(-1);
y = t;
plot(x,y)

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Produkte


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by