Search found 13 matches
- Wed Feb 25, 2015 5:40 pm
- Forum: Other topics
- Topic: Card shuffle code
- Replies: 2
- Views: 2058
Re: Card shuffle code
Thanks so much! Works great and saves time and processing power over a 2500 switch algorithm I was ysing
- Sat Feb 21, 2015 7:59 am
- Forum: Other topics
- Topic: Card shuffle code
- Replies: 2
- Views: 2058
Card shuffle code
Anyone have code or an approach to shuffle a 52 card deck. I don't want it to take forever by picking random cards that have already been shuffled.
- Sun Feb 15, 2015 3:35 am
- Forum: BASIC programs
- Topic: Pop up window?
- Replies: 5
- Views: 2842
Re: Pop up window?
Thanks I appreciates it
- Fri Feb 13, 2015 9:19 pm
- Forum: BASIC programs
- Topic: Linear trendline
- Replies: 12
- Views: 5437
Re: Linear trendline
Ok change it if you want in your own app. My argument is that there is no dependence of y on x. Which means there's not an obvious relationship. What if it's a sine curve? Etc.
- Fri Feb 13, 2015 9:01 pm
- Forum: BASIC programs
- Topic: Pop up window?
- Replies: 5
- Views: 2842
Pop up window?
Hi I'm wondering if it's possible to make a window Pop up from time to time in the middle of the screen with some text and an "ok" button. My white screen is going to be filled with buttons and text so I don't want to write over that. But I guess I could always use input if nothing else.
- Wed Feb 11, 2015 11:25 pm
- Forum: BASIC programs
- Topic: Linear trendline
- Replies: 12
- Views: 5437
Re: Linear trendline
Ok here is my final program, hopefully it will help somebody else too. print "" print "" print " Calibration v.1.0" print ". by 'Lauderdale'" print "" varr = 1 button "c" text "touch to continue" at 10,450 size 300,50 while varr = 1 if button_pressed ("c")=1 then varr = 2 end while button "c" delete...
- Wed Feb 11, 2015 8:42 pm
- Forum: BASIC programs
- Topic: Linear trendline
- Replies: 12
- Views: 5437
Re: Linear trendline
Ok thanks for the help, I will look into higher degree fits as well.
- Wed Feb 11, 2015 12:16 pm
- Forum: BASIC programs
- Topic: Linear trendline
- Replies: 12
- Views: 5437
Re: Linear trendline
print "" print "" print " R squared calculator" print ". by 'Lauderdale'" print "" varr = 1 button "c" text "touch to continue" at 10,450 size 300,50 while varr = 1 if button_pressed ("c")=1 then varr = 2 end while button "c" delete refresh print "" print "First you will input the data points (x,y)...
- Tue Feb 10, 2015 8:58 pm
- Forum: BASIC programs
- Topic: Linear trendline
- Replies: 12
- Views: 5437
Re: Linear trendline
Ok so I put this into my app, and all I get are a bunch of numbers on my screen. Do I have to edit the x and y values within the program? What do coefficients 1, 2, and 3 mean? Is that for a, b and c of y = ax^2+bx+c?
- Tue Feb 10, 2015 6:54 am
- Forum: BASIC programs
- Topic: Linear trendline
- Replies: 12
- Views: 5437
Re: Linear trendline
Thanks I appreciate it