Info
Cette question est clôturée. Rouvrir pour modifier ou répondre.
matlab) what should I do more to plot this function?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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?
0 commentaires
Réponses (1)
Walter Roberson
le 12 Mar 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
1 commentaire
Cette question est clôturée.
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!