Author Topic: Output results to a table TI-Nspire  (Read 2555 times)

0 Members and 1 Guest are viewing this topic.

Offline greg701

  • LV1 Newcomer (Next: 20)
  • *
  • Posts: 10
  • Rating: +0/-0
    • View Profile
Output results to a table TI-Nspire
« on: May 04, 2011, 05:32:33 am »
Hi all I was wondering whether it would be possible to output results from iterative calculations to a table.

For example say I have the Newton raphson Iterative formula,



and I wanted to display results in a table with headers r and x_r

How would I go about programming this so it outputs to a table on my TI-Nspire (Non cas)?

Thanks for your time and trouble

Offline Eiyeron

  • Urist McEiyolobster
  • LV10 31337 u53r (Next: 2000)
  • **********
  • Posts: 1430
  • Rating: +130/-10
  • (-_(//));
    • View Profile
    • Rétro-Actif : Rétro/Prog/Blog
Re: Output results to a table TI-Nspire
« Reply #1 on: August 13, 2011, 07:23:57 pm »
Yes! With iterative, that would be easy!
OFr example:
Code: [Select]
NewTable table // or equivalent function
index = 0
While blahblah
//calculus
index+1->index
result->table[index]
EndWhile //Correclty written?
« Last Edit: August 13, 2011, 07:24:18 pm by Eiyeron »