Re: To espyrian EXCLUSIVELY
- From: espyrian <espyrian@xxxxxxxxx>
- Date: Sat, 27 May 2006 09:31:15 +0930
"Luis A. Afonso" wrote:
Espyrian
Would you, please, repeat that my program (below)
provides exact vales of nCx in the range ____n<=50 , x<=25 ?
Thank you in advance
_____licas (Luis A. Afonso)
REM "binomial"
CLS
DEFDBL A-Z
PRINT " nCHOOSEx "
INPUT " n (<= 50) "; n
INPUT " x (<=25) "; x
ante = 1
FOR k = 0 TO x - 1
post = ante * (n - k) / (k + 1)
ante = post
NEXT k
PRINT USING " ##################"; ante
END
LOL! I'm sorry, Luis, but I think you are confused. I don't have the ability, nor the desire for that matter, to check your program. I have no need for it. All I did was suggest that your posts predominantly concerning QBasic better belong in the alt.lang.basic newsgroup rather than here. It was Reef Fish who showed the initiative by actually posting your code in alt.lang.basic for verification, and it was Tom Lake who provided an excellent, timely reply in that forum.
I hang around these sci.stat.* boards to learn about, and because of my interest in, statistics, not programming. I feel that alt.lang.basic would be better suited to your interests.
.
- Follow-Ups:
- Re: To espyrian EXCLUSIVELY
- From: yurra
- Re: To espyrian EXCLUSIVELY
- References:
- To espyrian EXCLUSIVELY
- From: \"Luis A. Afonso\"
- To espyrian EXCLUSIVELY
- Prev by Date: Re: Chi-Squared Test (goodness of fit) confidence levels
- Next by Date: Re: Difference between Principal Components Analysis and Factor Analysis?
- Previous by thread: Re: To espyrian EXCLUSIVELY
- Next by thread: Re: To espyrian EXCLUSIVELY
- Index(es):
Relevant Pages
|
|