| Author |
Comment/Response |
.
|
08/28/11 6:30pm
Hi all, I want to plot
ConditionalExpression[(
a^y \[Lambda] (a + \[Lambda])^(-1 - y) Gamma[1 + y])/y!,
Re[a + \[Lambda]] > 0 && Re[y] > -1]
the variable is y, from 1 to 10; a goes from 0.1 to 1 and will be nice to manipulate it. [\Lambda]=1.
I see this post,
http://forums.wolfram.com/student-support/topics/26438
but can not figure out to port the idea to my case. I got an empty graph! Why?
This was what I have used
Manipulate[
ListLinePlot[
Table[(a^y \[Lambda] (a + \[Lambda])^(-1 - y) Gamma[1 + y])/
y!, {y, 0, 10, 1}], PlotRange -> {0, 1}, DataRange -> {0, 5},
PlotMarkers -> Automatic], {a, 0.01, 1, 0.01}]
Thanks in advance.
URL: , |
|