Plotting a an equation as function of radius .

3 visualizaciones (últimos 30 días)
AISHWARYA KASARLA
AISHWARYA KASARLA el 4 de Jul. de 2020
Comentada: AISHWARYA KASARLA el 4 de Jul. de 2020
I want to plot ,
utheta= -k*ln(ro/r)
where k=10 and ro=1000
for angle theta = pi/2 and theta = 3*pi/2 only where theta is measured from negative y axis.
How do I plot this. I am not getting , please help me.

Respuestas (1)

KSSV
KSSV el 4 de Jul. de 2020
t = linspace(pi/2,3*pi/2) ;
k = 10 ; r0 = 1000 ;
r = r0*exp(t/k) ; % on solving the give equation for r
plot(t,r)
  5 comentarios
KSSV
KSSV el 4 de Jul. de 2020
utheta and theta are same right?
AISHWARYA KASARLA
AISHWARYA KASARLA el 4 de Jul. de 2020
no utheta is a dispalcement in theta direction which is a function of r only.

Iniciar sesión para comentar.

Categorías

Más información sobre Visual Exploration en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by