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
9
votes
1 answer

Convert integer to string in lua?

I've seen lot's of answers to convert strings to integers, but how can I convert integers to strings? When I try microseconds.toString() I get the following error: attempt to index upvalue 'microseconds' (a number value) Please note that this is on…
user8866053
5
votes
2 answers

using the eval function in the TI-Nspire math library

I am trying to understand how to use the TI-Nspire CAS system through Lua. I am trying to emulate the solve(x+5/3,x) functionality found in the TI-Nspire CX CAS gui. I looked through the API Docs found here :…
user8080124
4
votes
1 answer

What’s the difference between sx and σx in the statistics calculations on a TI-Nspire?

I know that sx is the standard deviation of a sample and σx is the standard deviation of a population. My question is, does the TI-Nspire think that the data I entered is a sample or the population? If it think’s (A) my data is a sample, how is σx…
lukejanicke
  • 977
  • 1
  • 9
  • 25
4
votes
1 answer

How to allow an undefined number of inputs on TI-Nspire CX?

I am in high school, and enjoy creating programs on my TI-Nspire CX calculator. One of the biggest limiting factors in my programming capabilities, are the number of inputs allowed. I only know how to make programs where I allow a set number of…
3
votes
1 answer

Prevent TI BASIC expression expansion

I'm coding a function for my TI-Nspire CAS calculator. I have two parts of an expression: (x+2)^2 and +3. When the expressions are joined the result is expanded to x^2+4x+7 while I need it to remain as (x+2)^2+3. I've tried making both parts…
Anti Earth
  • 4,671
  • 13
  • 52
  • 83
3
votes
1 answer

Call into Lua from TI-BASIC

I have an nspire calculator and after writing a hash table implementation, found the BASIC environment to be a pretty offensive programming environment. Unfortunately, as far as I'm aware, it's impossible to use Lua to write libraries. I did see…
Yet Another User
  • 2,627
  • 3
  • 18
  • 27
2
votes
1 answer

Evaluating values in a linear equation with 2 variables given by the user

I'm trying to make a TI-Basic script for my "TI-nspire CX II CAS" that evaluates linear equations with 2 variables. This is my code: Define LibPub test()= Prgm request "Insert function: ",fxy request "Point X: ",a request "Point Y: ",b Define…
Mamey
  • 81
  • 1
  • 10
2
votes
1 answer

Is there a way to use lists as arguments for functions in TI-Basic?

I am making a function in my TI-nspire CS II CAS to calculate the equivalent resistance of a resistors in parallel, with this formula: Parallel of resistors I made a program that can do this with any number of resistors in parallel. Like…
MrManini
  • 23
  • 3
2
votes
1 answer

TI-Basic: Nspire Basic Function will show Too many arguments

I am currently struggling with TI-Basic. I am using a TI-Nspire CX II-T CAS and I want to write my own library and add some functions for statistics. But at the moment I can not get to work any funcitons at all. Even the most basic code will not…
Stevie
  • 43
  • 6
2
votes
0 answers

How to evaluate a function inside a written function on the TI-nspire CX cas?

Hey guys I have the following code for a function that finds the range of a function given a restricted domain: Define resdom(m)= Func Local a,b fMin(m,x) -> a fMax(m,x) -> b m(a) -> a m(b) -> b return {a,b} EndFunc But unfortunately the cas wont…
Recessive
  • 1,780
  • 2
  • 14
  • 37
2
votes
2 answers

Inspired Lua Program is Different on Computer and Calculator

I am attempting to create a simple quadratic formula program for my TI-Nspire CX CAS. I seem to have everything correct, and it works on the computer: However, it doesn't work on the calculator. I get the second one correct, but the 1st is…
user8866053
2
votes
1 answer

Lua Nested Lists

I have this list and code (tldr): visualmap =…
crazicrafter1
  • 309
  • 5
  • 18
2
votes
2 answers

TI-NSpire dynamically create variables for vector cross product

Ok, I am trying to create a cross product function in the TI-NSpire that took n-1 vectors of dimension n and take the determinant of a matrix like this: [[u_x,u_y,u_z,u_w], [a_1,a_2,a_3,a_4], [b_1,b_2,b_3,b_4], [c_1,c_2,c_3,c_4]] The top row is…
Gerald
  • 166
  • 1
  • 13
2
votes
2 answers

How t check if a value is undefined in a matrix?

I have a matrix ratiotest:= [undef;undef;4]. Local i Local ratiotest for i,1,rowDim(ratiotest),1 if ratiotest[i] = "undef" Then ∞→ratiotest[i] end if endfor But I get "Error: Variable is not defined" Is there anyway to detect a undefined…
Ch32k0
  • 244
  • 3
  • 17
2
votes
2 answers

TI-Nspire: Transmit Parameters to Func/Prog

The Background I'm trying to program a function for TI-Nspire CAS Handheld. The function should determine the properties of one or more matrices like orthonormality. The Problem I don't know how to transmit the matrices as parameters to the…
A.Lymphater
  • 73
  • 1
  • 11
1
2 3 4 5 6