MathStudio
Blog
Share
Manual
Forums
Support
Discussions
Activity
Sign In
Support
BinomialCDF doesn't evaluate over lists
Briand
July 2012
I expected the BinomialCDF to evaluate cumulative values if given a list, but it just returns the query. I don't want to plot it, I just want to solve it. Example: BinomialCDF(20,0.8,[19,20,21]). Why doesn't this work?
fabifgon
July 2012
Hi,
BinomialCdf doesn't work with lists, you can do it like this:
Scroll(x,19,21,1)
BinomialCdf(20,0.8,x)
or like this:
y=List(3)
loop(i,19,21,1)
y(i-18)=BinomialCdf(20,0.8,i)
end
return(y)
Francisco.
Add a Comment
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Apply for Membership
Categories
All Discussions
1,735
Support
1,199
Feature Requests
120
Scripting
84
News & Announcements
38
iPhone and iPad
208
Mac
4
Android
68
Windows
14
In this Discussion
fabifgon
July 2012
Powered by Vanilla