TIB: [Sorry!!] Re: Strings Answer to basic question


[Prev][Next][Index][Thread]

TIB: [Sorry!!] Re: Strings Answer to basic question



Even on the 86?!? Ooops! And I'm always to telling everyone to RTFM. Shame on me!!!!!
 
Sorry for the bad info, and thanks for the correction Jeff.
 
Philipp Keller
----- Original Message -----
From: Jeff Tyrrill
To: ti-basic@lists.ticalc.org
Sent: 04 August 1999 16:17
Subject: TIB: RE: Re: RE: FW: Re: Strings Answer to basic question

But, you don't have to delete ANY y= variables. If LinR is executed without the third argument, it's just stored in RegEq, which will be cleared anyway whether or not the equation is stored to a y= variable. So just use RegEq instead of a y= variable.
-----Original Message-----
From: owner-ti-basic@lists.ticalc.org [mailto:owner-ti-basic@lists.ticalc.org]On Behalf Of The Kellers
Sent: Wednesday, August 04, 1999 1:04 PM
To: ti-basic@lists.ticalc.org
Subject: TIB: Re: RE: FW: Re: Strings Answer to basic question

Or on the 86, replace y1 with y99, wich is almost never used. Then delete it with DelVar()
 
Philippp Keller
----- Original Message -----
From: Jeff Tyrrill
To: ti-basic@lists.ticalc.org
Sent: 03 August 1999 18:53
Subject: TIB: RE: FW: Re: Strings Answer to basic question

This works fine, but to avoid deleting y1 (or when using a TI-85), remove the ",y1" from the end of the LinR statement and in the next Eq>St statement, replace "y1" with "RegEq".
-----Original Message-----
From: owner-ti-basic@lists.ticalc.org [mailto:owner-ti-basic@lists.ticalc.org]On Behalf Of Matthew
Sent: Tuesday, August 03, 1999 10:31 AM
To: ti-basic@lists.ticalc.org
Subject: TIB: FW: Re: Strings Answer to basic question

 
-----Original Message-----
From: owner-ti-basic@lists.ticalc.org [mailto:owner-ti-basic@lists.ticalc.org] On Behalf Of The Kellers
Sent: Wednesday, May 26, 1999 5:45 PM
To: ti-basic@lists.ticalc.org
Subject: TIB: Re: Strings

I'm surprised that nobody has posted the following yet. It was on the list a while ago.
 
This is for the '86, I don't know about he 83's commands, but I think it should work on there too.
 
"ABC" -> S                 *Create a String
58 -> N                    *The number I want to concatenate with the string
 
LinR {1,2} , {N,N} , y1    *Linear Regression with points (1,N) and (2,N).
                           *The  resulting equation is stored in y1.
Eq>St(y1,S2)               *Store y1 to S2 as a string. The value of S2 is "58+0x"
sub(S2,1,lngth S2-3) -> S2 *Chop of the "+0x" part
S+S2 -> S                  *concatenate the strings
 
No I wonder though, can you store the equation resulting of a linear regression to an equation variable on the TI-83? I believe that on the '82 the equation was automatically stored to a variable called "RegEq", or something of the sort... Would someone with an 83  please check the manual?
 
Philipp Keller
 
 
----- Original Message -----
From: Nathan Gaylinn <NathanG@firstva.com>
Sent: 25 May 1999 17:06
Subject: TIB: Strings

>
> How do you add a variable to a string? If I try D->Str1 I get an error,
> so how do you do it?
> I want this:
>
> 24 -> D
> "ABC" -> Str1
> Str1 + D -> Str1
> Disp Str1
>
> To display ABC24, not ABCD, and not give me any error. I know this is
> simple, but I can't figure it out. And yes, I know I don't need the
> "Disp", it just makes it more understandable.
>
>

References: