TI-83 Create List of invNorm in L2 from values in L1

149 Views Asked by At

I need to make a Q-Q plot from values in L1 list, but I need to get the invNorm(x) value of each number and put it into another list, L2. Do I need to call the invNorm function for each number in L1, or is there a shortcut where I can do the function for each value in L1 and place it into L2?

1

There are 1 best solutions below

1
On

The invNorm( command won't thread over lists directly for you, but you can get the same effect with seq(invNorm(L₁(N)),N,1,dim(L₁))→L₂.

(See this page for more details on the seq( command.)