Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - apcalc

Pages: 1 ... 93 94 [95] 96
1411
General Calculator Help / Re: INstalling ndless....AGAIN....Fml..
« on: June 19, 2010, 08:28:32 pm »
Also, try using a fresh copy of ndless along with reinstalling the software.  You may have accidentally made a change to the file without knowing it.  Here is the link: http://www.ticalc.org/archives/files/fileinfo/426/42626.html

1412
Humour and Jokes / Re: 9001 signs you're addicted to calcs and Omni
« on: June 19, 2010, 05:19:15 pm »
63- Instead of starting a new line, you just write \n
64- Every time you say "if" you always end the sentence with "EndIf"
65- Same as 64, except it applies to while, for, and try
66- It drives you crazy when people refer to the TI-83, TI-83 SE,TI-84, and TI-84 SE collectively as "the 84"

1413
Humour and Jokes / Re: 9001 signs you're addicted to calcs and Omni
« on: June 19, 2010, 11:30:30 am »
12. When you calculator batteries die, you get new ones from the nearest battery-powered object.
13. When you have to write "inspire" in an essay, you write "nspire"
14. Same problem as 13, you write "ndless", not "endless"

Also, DJ, don't forget to indent you paragraph in Number 6, it should be Output(3,1,"" :).

1414
General Calculator Help / Re: INstalling ndless....AGAIN....Fml..
« on: June 19, 2010, 10:39:08 am »
Have you installed the 64-bit patch for TI-Connect? That might be the issue.

I could be wrong, but I don't think this is the issue because TI-Connect has almost nothing to do with the TI-Nspire.  Also, I don't think the patch is available from TI anymore; the last time I checked they uploaded a new completly compatible version of the software.

Do you have Computer Link 1.4 installed on your computer with version 1.3.  If you do, try uninstalling it, as Ndless might only detect the one version.

1415
Art / Re: Sprite request for Nostalgia
« on: June 08, 2010, 10:35:17 pm »
Paint.NET is fair for Pixel Art.  I does let you get a good zoom on the sprite, but I still prefer to use MS Paint.

1416
I don't think the 68k calcs are completly dead.  I see TI-89s in many stores where I live, but I have never once seen a TI-Nspire CAS in a store.  Also, my school purchased new TI-89s for to be used in precalc and Calculus classes (they used to have 83s).  Also, although a TI-89 or TI-83/84 emulator would increase the demand for a Nspire among programmers, I do not think that this would cause a major downfall of the 68k series.  At my school, I am the only person who even has an idea on how to program (I amaze people with a qradratic formula program  ;D), and I can never see these people figuring out how to send/use an emulator on the Nspire).

1417
General Calculator Help / TI-Nspire Emulator Help
« on: June 05, 2010, 04:00:04 pm »
Hi.  I have been trying for several days to get the TI-Nspire emulator installed on my computer, but I can't extract the boot 2 image from the .tno file.  I change the file extension to *.zip and Windows gives an error message saying that the files cannot be extracted.  In the setup video, it looks like some third party extraction software is being used, not just the built in Windows extractor.  Does anyone know how I can extract the file to get the emulator working? Thank you for your help!

1418
Calculator C / Re: Lists in C
« on: May 24, 2010, 06:22:51 pm »
I have another problem with lists in C.  How to I add strings to a list?  For example, I want the list

Code: [Select]
testlist[4]={"Test","List","Hello","World"};
How would I create this list.  I tried declaring it as a character:

Code: [Select]
char testlist[4]={"Test","List","Hello","World"};
but this did not work. What am I doing wrong?  Thanks again for your help! :)

1419
Calculator C / Lists in C
« on: May 17, 2010, 08:40:19 pm »
Hi.  I am having trouble writing a program in C for the TI-89.  I am very new to the language and I still have a lot to learn.

In TI-Basic, I have programs that  can take a list, ex: {1,4,3,1,7,9}, and will retrive a certain element from the list.  For example, if I called for element number 2, the function would return 4.

Is there any way I can get the same feature in C.  Would I use "lists" like in TI-Basic, or is there a different method.  Also, I would have the lists pre-entered in the program.  The program would not have to add data to the lists.

1420
Bwang, I finally had the time to downgrade my OS last night and try your Raycaster.  You did an excellent job.  I wish I was as good at programming as you. :D

1421
TI-Nspire / Re: CAS OS on Standard TI-nspire [development idea]
« on: May 07, 2010, 09:51:36 pm »
Another interesting thing is that it never "completes" the calculation.  It is not really an error message, but simply a dialog box that appears.  For example, if I type x+1 without having x defined, it actually "completes" the calculation, with the "answer" being "Error: Variable not defined"  When using the CAS unsupported features, the dialog box appears and it goes right back to the original line, as if nothing ever happened.  There could be just a line or two of code blocking the calculation from progressing.

1422
TI-Nspire / Re: CAS OS on Standard TI-nspire [development idea]
« on: May 07, 2010, 06:57:12 pm »
Also, all of the CAS features are on the non-CAS, just not listed.  Even those, such as taylor(, that are no where to be found in the catalog, get the error message "CAS needed."  There must be some way to "unlock" the CAS features.

1423
ASM / Re: Programming help
« on: May 05, 2010, 07:59:38 pm »
That should make the program better.  Thanks for your help!  I have to finish this program fast before my Chemistry final.  I still have a long list of programs to go.

1424
ASM / Re: Programming help
« on: May 05, 2010, 07:21:33 pm »
Hi.  I have a program that uses Goto [whatever] in an If...EndIf block.    The code is below.  It is a [incomplete] Gas Laws program for the TI-Nspire.  Because this is a program and will end, and not keep playing like a game, will I use RAM memory.  Also, if this does use memory, could I fix it by making it go back to the original If...EndIf block with a lbl at the end of it and have it display the answer from there?  Thanks!

Code: [Select]
Define LibPub gaslaws()=
Prgm
:Local equ
:Text "Choose Equation-
(1) Boyle's Law
(2) Charles' Law
(3) Gay-Lussac's Law
(4) Avogadro's Law
(5) Ideal Gas Law
(6) Combined Gas Law
(7) Van der Waals' Equation
(8) Graham's Law"
:Request "Choose Equation:",equ
:If equ=1 Then
:Goto a
:ElseIf equ=2 Then
:Goto b
:ElseIf equ=3 Then
:Goto c
:ElseIf equ=4 Then
:Goto d
:ElseIf equ=5 Then
:Goto e
:ElseIf equ=6 Then
:Goto f
:ElseIf equ=7 Then
:Goto g
:ElseIf equ=8 Then
:Goto h
:EndIf
:Lbl a
:©Boyle's Law
:RequestStr "V1",v1
:RequestStr "V2",v2
:RequestStr "P1",p1
:RequestStr "P2",p2
:Disp "Answer: "&nSolve(expr(v1)*expr(p1)=expr(v2)*expr(p2),x)
:Lbl b
:©Charles' Law
:RequestStr "V1",v1
:RequestStr "V2",v2
:RequestStr "T1",t1
:RequestStr "T2",t2
:Disp "Answer: "&nSolve(((expr(v1))/(expr(t1)))=((expr(v2))/(expr(t2))),x)
:Lbl c
:©Gay-Lussac's Law
:Lbl d
:©Avogarro's Law
:RequestStr "V1",v1
:RequestStr "V2",v2
:RequestStr "n1",n1
:RequestStr "n2",n2
:Disp "Answer: "&nSolve(((expr(v1))/(expr(n1)))=((expr(v2))/(expr(n2))),x)
:Lbl e
:©Ideal Gas Law
:RequestStr "V1",v1
:RequestStr "V2",v2
:RequestStr "P1",p1
:RequestStr "P2",p2
:RequestStr "T1",t1
:RequestStr "T2",t2
:Disp "Answer: "&nSolve(((expr(v1)*expr(p1))/(expr(t1)))=((expr(v2)*expr(p2))/(expr(t2))),x)
:Lbl f
:©Combined Gas Law
:RequestStr "V1",v1
:RequestStr "V2",v2
:RequestStr "P1",p1
:RequestStr "P2",p2
:RequestStr "T1",t1
:RequestStr "T2",t2
:RequestStr "n1",n1
:RequestStr "n2",n2
:Disp "Answer: "&nSolve(((expr(v1)*expr(p1))/(expr(t1)*expr(n1)))=((expr(v2)*expr(p2))/(expr(t2)*expr(n2))),x)
:Lbl g
:©Van der Waals Equation
:Lbl h
:EndPrgm


1425
TI-Nspire / Re: Nspire Raycaster
« on: May 05, 2010, 03:52:21 pm »
Every time a new video is posted, I want to try this more and more, but I have OS 2.0 and I need the programming tools in 2.0 for Chemistry programs I use in school.  I wish this would work on 2.0. :(  I hope Ndless 2 comes out soon.

Pages: 1 ... 93 94 [95] 96