I need help with creating bounded logarithmic plot
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
I need help with creating bounded logarithmic plot with:
x=e^-1, y=t, 0<t<2pi
Can someone please solve this?
0 Commenti
Risposte (1)
Joel Lynch
il 9 Giu 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)
0 Commenti
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!