Questions tagged [ti-nspire]

The TI-Nspire product line is a series of graphing calculators developed by Texas Instruments. This line currently includes the TI-Nspire, TI-Nspire CAS, TI-Nspire CX and TI-Nspire CX CAS.

The TI-Nspire product line is a series of graphing calculators developed by Texas Instruments. This line currently includes the TI-Nspire, TI-Nspire CAS, TI-Nspire CX and TI-Nspire CX CAS. There are models aimed for Chinese market, named as TI-Nspire CM-C, TI-Nspire CX-C, TI-Nspire CM-C CAS, TI-Nspire CX-C CAS. There is also software available for Windows and Mac OS X that act in similar ways to the calculators and allow the user to create compatible files. This software either requires a license or can only be used for a limited time. However, Texas Instruments also provides separate software that can be used for an unlimited time without a license but only allows file transfers and not emulation of the calculator. In 2010, Texas Instruments updated the calculators to the Touchpad versions which come with the Nspire or Nspire CAS computer software and support optional rechargeable batteries. In 2011, TI announced two new models of the TI-Nspire series: Nspire CX and Nspire CX CAS. The main new features are the color screen, rechargeable battery and thinner design.

https://en.wikipedia.org/wiki/TI-Nspire_series

76 questions
1
vote
2 answers

Lua raycasting issues

I have worked day-in and day-out on a ray-casting engine I'm building for the Ti Nspire CX (with Lua), and am having issues with ray collision. I have fiddled around with the area which I believe has the problem, because drawing of rays on the…
crazicrafter1
  • 309
  • 5
  • 18
1
vote
2 answers

Result z*conj(z) with z complex - TI-Nspire CAS

When I write z*conj(z) on TI-Nspire CAS, the result is z^2 (true only if z is real) instead of |z|^2. Is there a way to get the right result |z|^2? Thank you very much.
Gennaro Arguzzi
  • 769
  • 1
  • 14
  • 27
1
vote
1 answer

Impose variable greater than zero - TI-Nspire CAS

Is it possible to impose x>0 in the scratchpad of TI-Nspire CAS? The Define allows only to define a variable x=something. Thank you for your help.
Gennaro Arguzzi
  • 769
  • 1
  • 14
  • 27
1
vote
2 answers

In TI-BASIC, how do I display the Variable Name given only the variable?

I'm creating a function that displays a lot of variables with the format Variable + Variable Name. Define LibPub out(list)= Func Local X for x,1,dim(list) list[x]->name // How can I get the variable name here? Disp name+list[x] EndFor Return…
1
vote
2 answers

Check type of variable within Ti-Nspire function

In Javascript there is the string typeof variable which returns either: number, string, array, object. Is there a similar function I can run in the Ti-Nspire to tell if the variable is a number, string, or matrix?
ZomoXYZ
  • 1,763
  • 21
  • 44
1
vote
1 answer

Ti-Nspire CX CAS: clear home screen, clc-clear equivalent in Matlab

I am writing some simple programms which I am running in scratchpad by calling the name of the programme. I have developed a little script to print all the results at the end of the execution, but I cannot find some way to purge scratchpad before…
AleN
  • 75
  • 1
  • 5
1
vote
2 answers

Remapping Memory-Mapped I/O

My TI-Nspire CX CAS has a broken hardware component, and its ADC3 is reading a value of ~465 units, when it should be ~73 for proper function. So rather than fixing the hardware, I wanted to try a dirty fix by remapping the output location (which is…
1
vote
2 answers

TI Nspire - How to output an expression without the calculator evaluating it

I was wondering how I would return an expression without it being evaluated. Define LibPub exactly(r,l,c,vi,vf)= Func :Local t :Local diff :If l=0 Then : t:=−1*((1)/(r*c)) :Else : t:=−1*((1)/(((r)/(l)))) :EndIf :diff:=vi-vf …
user3470887
0
votes
1 answer

Error: 910 i.e. Syntax error is returned by math.evalStr() API of TI-Nspire engine

Code I have this Lua script for a TI-Nspire CAS calculator. platform.apilevel = '2.2' box_prompt, error = D2Editor.newRichText():resize(300, 40) box_prompt:move(0,…
Megidd
  • 7,089
  • 6
  • 65
  • 142
0
votes
0 answers

How do I use the "with" symbol (|) in my own personal functions?

I am a year 12 Maths student and recently I tried making a program that produces the function maximums and miniumums of any function. This is for my TI-nspire CX II. However, I am unaware of how to properly use the with '|' statement for my…
0
votes
1 answer

How to take a function as an input in Ti Nspire Basic?

I am trying to write a program for calculating the instantenious voltage of an inductor. I want to take the function of current (a function of t). I am also trying to run this on Ti-nspire CX instead of CAS if it matters I first tried this. Define…
0
votes
1 answer

No module named 'ti_image' in TI-nspire CX II python

this is a question specific to the Ti-nspire's python library, but there isn't a tag specifically for it. I'm trying to use its ti_image module, which to my knowledge should be pre-installed on the calculator like all of the other modules that work…
Davedude
  • 160
  • 10
0
votes
0 answers

ti-nspire defining variables

I want to define a program/function which defines a function itself and the 1., 2. and 3. derivative of it as global variables. The name of the function should be variable. Smt like: Define LibPub der(a,b)= Prgm a(x):=b a1(x):=d/dx…
O. P.
  • 1
0
votes
1 answer

f(x,y):=x.y is refused "unauthorized change : the variable type is invalid" (but seems working on many examples I see over the Internet...)

I erased all the variables of my scratchpad, with ClearAZ, and attempted to enter the multivariable function f(x,y) := x.y that I see everywhere over the Internet on my TI-nspire CX II-T. But, myself, I'm receiving the message: "unauthorized change…
Marc Le Bihan
  • 2,308
  • 2
  • 23
  • 41
0
votes
0 answers

Ti-Nspire missing ti-basic things

I have a Ti-nspire graphing calculator that I bought online (the one that came out in 2006) I have been searching for quite a while and have found very little documentation online. I have wanted to code in Ti-basic for a while, which I was excited…