Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

matlab) what should I do more to plot this function?

1 visualización (últimos 30 días)
hyunmin
hyunmin el 12 de Mzo. de 2014
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
a=52.9*10^-12
x=0 : 900*10^-12
y=[(4*pi*(x^2))]*[(2*(2^0.5)/(81*(15)^0.5))*((1/a)^(1.5))*((x/a)^2)*(exp(-(x/(3*a))))]^2
I just want to plot this long function. what should I do?

Respuestas (1)

Walter Roberson
Walter Roberson el 12 de Mzo. de 2014
The syntax
x = A : B
starts at A and increments by 1, stopping at the last value <= B.
0 <= 900*10^-12 so 0 : 900*10^-12 includes 0. Then (0+1) is not <= 900*10^-12 so nothing else is included.
I suggest you see linspace(). I also suggest you read http://www.mathworks.com/help/matlab/ref/power.html

La pregunta está cerrada.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by