User contributions
From WikiPrizm
Jump to navigationJump to search- 23:15, 21 February 2012 diff hist +283 N BasicToken:=> Created page with '= =>(Jump Code) = == Description == This command is used for conditional jump. == Syntax == ''Condition'''''=>'''''Code to run if condition is true'' '''return, colon or triangl…' current
- 23:11, 21 February 2012 diff hist +2 BASIC Reference →BASIC Token Reference Guide
- 23:10, 21 February 2012 diff hist +10 BASIC Reference →BASIC Token Reference Guide
- 18:50, 21 February 2012 diff hist +172 N BasicToken:Ran Created page with '= Ran# = == Description == This command returns the random non-integer number between 0 and 1. == Syntax == '''Ran#''' == Example == Ran# Category:BASIC_Commands' current
- 20:25, 20 February 2012 diff hist +284 N BasicToken:To Created page with '= To = == Description == This command creates counter loop along with '''For''' and '''Next''' == Syntax == '''For''' ''Start_Num'' → ''Variable'' '''To''' ''End_Num'' ...Stu…' current
- 20:21, 20 February 2012 diff hist +141 N BasicToken:Pie Created page with '= Pie = == Description == This sets the stat graph type to Pie graph. == Syntax == '''Pie''' == Example == Pie Category:BASIC_Commands' current
- 20:18, 20 February 2012 diff hist +151 N BasicToken:Hist Created page with '= Histograph = == Description == This sets the stat graph type to Histograph. == Syntax == '''Hist''' == Example == Hist Category:BASIC_Commands' current
- 20:17, 20 February 2012 diff hist +141 N BasicToken:Bar Created page with '= Bar = == Description == This sets the stat graph type to Bar graph. == Syntax == '''Bar''' == Example == Bar Category:BASIC_Commands' current
- 21:01, 16 February 2012 diff hist +153 N BasicToken:minY Created page with '= minY = == Description == This is for specifying minimum y value in y axis at graphscreen. == Syntax == ''Value''→'''MinY''' == Example == 3→MinY' current
- 21:00, 16 February 2012 diff hist +153 N BasicToken:minX Created page with '= minX = == Description == This is for specifying minimum x value in x axis at graphscreen. == Syntax == ''Value''→'''MinX''' == Example == 3→MinX' current
- 20:59, 16 February 2012 diff hist +153 N BasicToken:maxY Created page with '= maxY = == Description == This is for specifying Maximum y value in y axis at graphscreen. == Syntax == ''Value''→'''MaxY''' == Example == 3→MaxY' current
- 20:59, 16 February 2012 diff hist -3 BasicToken:maxX current
- 20:58, 16 February 2012 diff hist +156 N BasicToken:maxX Created page with '= LpWhile = == Description == This is for specifying Maximum x value in x axis at graphscreen. == Syntax == ''Value''→'''MaxX''' == Example == 3→MaxX'
- 20:53, 16 February 2012 diff hist +199 N BasicToken:LpWhile Created page with '= LpWhile = == Description == This command is used to create Do-LoopWhile along with '''Do''' == Syntax == '''Do''' ...Codes... '''LpWhile''' ''Condition'' == Example == Do …' current
- 20:52, 16 February 2012 diff hist +199 N BasicToken:Do Created page with '= Do = == Description == This command is used to create Do-LoopWhile along with '''LpWhile''' == Syntax == '''Do''' ...Codes... '''LpWhile''' ''Condition'' == Example == Do …' current
- 20:49, 16 February 2012 diff hist +166 N BasicToken:Fix Created page with '= Fix = == Description == This command is used to specify the number of digits displayed after decimal point. == Syntax == '''Fix''' ''Number'' == Example == Fix 3' current
- 20:48, 16 February 2012 diff hist +166 N BasicToken:Break Created page with '= Break = == Description == This command is used to break out of the loop. == Syntax == '''Break''' == Example == For 1→A To 21 If A=3 Then Break IfEnd Next' current
- 20:46, 16 February 2012 diff hist +138 N BasicToken:Goto Created page with '= Goto = == Description == This command is used to jump to specified label. == Syntax == '''Goto''' ''Label_Name'' == Example == Goto A' current
- 19:40, 16 February 2012 diff hist +1 BasicToken:Π →Example current
- 19:40, 16 February 2012 diff hist +163 N BasicToken:Π Created page with '= Π = == Description == This is Π, as in 3.14159.... This is a number, not a variable. == Syntax == '''Π''' == Example == Π Π+3 Category:BASIC_Commands'
- 19:33, 16 February 2012 diff hist +188 N BasicToken:PMT Created page with '= PMT = == Description == This is the payment amount in financial calculation. Can be used as a variable. == Syntax == '''PMT''' == Example == PMT 100→PMT [[Category:BASIC_…' current
- 19:31, 16 February 2012 diff hist +181 N BasicToken:FV Created page with '= FV = == Description == This is the final value in financial calculation. Can be used as a variable. == Syntax == '''FV''' == Example == FV 100→FV [[Category:BASIC_Command…' current
- 19:18, 16 February 2012 diff hist +183 N BasicToken:logab( Created page with '= logab( = == Description == This command returns the value of log b base a. == Syntax == '''logab('''''base'',''value''''')''' == Example == logab(2,8) [[Category:BASIC_Comma…' current
- 19:14, 16 February 2012 diff hist +146 N BasicToken:p Created page with '= P = == Description == This is the command to get a permutation. == Syntax == ''n'''''P'''''r'' == Example == 3P2 Category:BASIC_Commands' current
- 19:12, 16 February 2012 diff hist +253 N BasicToken:Then Created page with '= Then = == Description == This command is used with If-Then statement along with '''IfEnd''', and '''If'''. == Syntax == '''If''' ''Condition'' '''Then''' ...Codes... '''IfE…' current
- 19:12, 16 February 2012 diff hist +253 N BasicToken:IfEnd Created page with '= IfEnd = == Description == This command is used with If-Then statement along with '''Then''', and '''If'''. == Syntax == '''If''' ''Condition'' '''Then''' ...Codes... '''IfE…' current
- 19:11, 16 February 2012 diff hist +249 N BasicToken:If Created page with '= If = == Description == This command is used with If-Then statement along with '''Then''', '''IfEnd'''. == Syntax == '''If''' ''Condition'' '''Then''' ...Codes... '''IfEnd''…' current
- 19:07, 16 February 2012 diff hist +212 N BasicToken:Red Created page with '= Red = == Description == This command sets the subsequent Locate or other text command to render in red. == Syntax == '''Red <text command>''' == Example == Red Locate 1, 1, …' current
- 19:04, 16 February 2012 diff hist +147 N BasicToken:! Created page with '= ! = == Description == This command returns the factorial of value. == Syntax == ''Value'''''!''' == Example == 10! Category:BASIC_Commands' current
- 19:01, 16 February 2012 diff hist 0 BASIC Reference
- 08:44, 16 February 2012 diff hist +3,656 BASIC Reference →BASIC Token Reference Guide
- 20:56, 15 February 2012 diff hist +268 N BasicToken:InvNormCD( Created page with '= InvNormCD( = == Description == This command returns the cumulative inverse normal distribution. == Syntax == '''InvNormCD('''[''L(or -1) or R(or 1) or C(or 0),''] ''p'' [''s…' current
- 20:53, 15 February 2012 diff hist +248 N BasicToken:InvHypergeoCD( Created page with '= InvHypergeoCD( = == Description == This command returns the cumulative inverse hypergeometric distribution. == Syntax == '''InvHypergeoCD('''''x'',''n'',''k'',''N''''')''' …' current
- 20:50, 15 February 2012 diff hist +226 N BasicToken:InvPoissonCD( Created page with '= InvPoissonCD( = == Description == This command returns the cumulative inverse Poisson distribution. == Syntax == '''InvPoissonCD('''''p'',''lamda''''')''' == Example == …' current
- 20:48, 15 February 2012 diff hist +153 N BasicToken:ClrGraph Created page with '= ClrGraph = == Description == This command clears the graphscreen. == Syntax == '''ClrGraph''' == Example == ClrGraph Category:BASIC_Commands' current
- 20:36, 15 February 2012 diff hist +242 N BasicToken:HypergeoCD( Created page with '= HypergeoCD( = == Description == This command returns the cumulative hypergeometric distribution until event x. == Syntax == '''HypergeoCD('''''x'',''n'',''k'',''N''''')''' ==…' current
- 20:35, 15 February 2012 diff hist +289 N BasicToken:HypergeoPD( Created page with '= HypergeoPD( = == Description == This command returns the hypergeometric distribution at event x. The formula of this command is: P(x)=kCx * (N-k)C(n-x) / NCn == Syntax == '''H…' current
- 20:27, 15 February 2012 diff hist +212 N BasicToken:InvGeoCD( Created page with '= InvGeoCD( = == Description == This command returns the x value from probability p and success rate P. == Syntax == '''InvGeoCD('''''p'',''P''''')''' == Example == InvGeoCD(.01…' current
- 20:25, 15 February 2012 diff hist +291 N BasicToken:Bond YLD( Created page with '= Bond_YLD( = == Description == This command returns the yield based on specified conditions. == Syntax == '''Bond_YLD('''''MM1'',''DD1'',''YYYY1'',''MM2'',''DD2'',''YYYY2'',''RD…' current
- 20:23, 15 February 2012 diff hist -1 BasicToken:Bond PRC( →Bond_PRC(( current
- 20:23, 15 February 2012 diff hist +346 N BasicToken:Bond PRC( Created page with '= Bond_PRC(( = == Description == This command returns in list form bond prices based on specified conditions. == Syntax == '''Bond_PRC('''''MM1'',''DD1'',''YYYY1'',''MM2'',''DD2'…'
- 20:20, 15 February 2012 diff hist +254 N BasicToken:Cnvt EFF( Created page with '= Cnvt_EFF( = == Description == This command returns the interest rate converted from the nominal interest rate to the effective interest rate. == Syntax == '''Cnvt_EFF('''''n''…' current
- 20:19, 15 February 2012 diff hist +254 N BasicToken:Cnvt APR( Created page with '= Cnvt_APR( = == Description == This command returns the interest rate converted from the effective interest rate to the nominal interest rate. == Syntax == '''Cnvt_APR('''''n''…' current
- 20:15, 15 February 2012 diff hist +239 N BasicToken:D(Reg) Created page with '= d(Reg) = == Description == This is the '''d''' value used in regression. Can be treated as a number. Regression including '''d''' must be calculated before usage. == Syntax ==…' current
- 20:14, 15 February 2012 diff hist +206 N BasicToken:I% Created page with '= I% = == Description == This is the annual interest value used in financial calculation. This can be treated as a variable. == Syntax == '''I%''' == Example == 5.5→I% 3*I% …' current
- 20:12, 15 February 2012 diff hist +241 N BasicToken:Cmpd PV( Created page with '= Cmpd_PV( = == Description == This command returns present value(loan amount or principal) == Syntax == '''Cmpd_PV('''''n'',''I%'',''PMT'',''FV'',''P/Y'',''C/Y''''')''' == Exam…' current
- 20:12, 15 February 2012 diff hist +255 N BasicToken:Cmpd PMT( Created page with '= Cmpd_PMT( = == Description == This command returns the equal input/output values for a fixed period. == Syntax == '''Cmpd_PMT('''''n'',''I%'',''PV'',''FV'',''P/Y'',''C/Y''''')'…' current
- 20:11, 15 February 2012 diff hist +229 N BasicToken:Cmpd n( Created page with '= Cmpd_n( = == Description == This command returns number of compound periods. == Syntax == '''Cmpd_n('''''I%'',''PV'',''PMT'',''FV'',''P/Y'',''C/Y''''')''' == Example == Cmpd_…' current
- 20:10, 15 February 2012 diff hist +219 N BasicToken:Cmpd I%( Created page with '= Cmpd_I%( = == Description == This command returns annual interest. == Syntax == '''Cmpd_I%('''''n'',''PV'',''PMT'',''FV'',''P/Y'',''C/Y''''')''' == Example == Cmpd_I%(10,1000…' current
- 20:09, 15 February 2012 diff hist +267 N BasicToken:Cmpd FV( Created page with '= Cmpd_FV( = == Description == This command returns the final input/output amount or total principal and interest. == Syntax == '''Cmpd_FV('''''n'',''I%'',''PV'',''PMT'',''P/Y'',…' current