Author Topic: Branch defined functions NSpire  (Read 2524 times)

0 Members and 1 Guest are viewing this topic.

Offline Munchor

  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 6199
  • Rating: +295/-121
  • Code Recycler
    • View Profile
Branch defined functions NSpire
« on: March 17, 2011, 11:49:37 am »
In the 8x Series I can:
Code: [Select]
Y1= (2.5X)(X>10)
Y2 = (5X)(X<=10)

This meaning:
If x>10, y=2.5x
If x<=10, y=5x

How can I do this on the nspire?

Offline Goplat

  • LV5 Advanced (Next: 300)
  • *****
  • Posts: 289
  • Rating: +82/-0
    • View Profile
Re: Branch defined functions NSpire
« Reply #1 on: March 17, 2011, 12:41:36 pm »
try: y=piecewise(2.5x,x>10,5x,x<=10
Numquam te deseram; numquam te deficiam; numquam circa curram et te desolabo
Numquam te plorare faciam; numquam valedicam; numquam mendacium dicam et te vulnerabo

Offline Munchor

  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 6199
  • Rating: +295/-121
  • Code Recycler
    • View Profile
Re: Branch defined functions NSpire
« Reply #2 on: March 17, 2011, 05:12:17 pm »
I managed to do it.
Library_Button>>>3>>>Branch defined functions icon

Worked ;)

Offline phenomist

  • LV4 Regular (Next: 200)
  • ****
  • Posts: 132
  • Rating: +46/-3
    • View Profile
Re: Branch defined functions NSpire
« Reply #3 on: March 17, 2011, 07:04:15 pm »
Oh, and if you need to actually take the value on the piecewise graph without having to switch between graphs, you can add them together; e.g. Y1 = (2.5X)(X>10)+(5X)(X<=10). (This is on the TI-83/84)
« Last Edit: March 17, 2011, 07:04:36 pm by phenomist »
Level Designer for Graviter

[Disclaimer: I can't program for my life.]