I was just wondering whether there was a command that could reverse the contents of a list? An example of reversal would be {2,2,5,8} becoming {8,5,2,2}.
Will the list necessarily be sorted? If so, you can use SortA() and/or SortD(). If not, you can use a co-sorting trick. Say your list is LA:

Code:
seq(X,X,1,dim(LA),1->L1
SortD(L1,LA
Voila!

Code:
seq(L1(X),X,dim(L1),1,-1


Or:

Code:
seq(L1(-X),X,-dim(L1),-1
Oh, silly me, how could I miss that combination. Sad Hats off to you, as always.
Cheers guys, your help is much appreciated.
  
Register to Join the Conversation
Have your own thoughts to add to this or any other topic? Want to ask a question, offer a suggestion, share your own programs and projects, upload a file to the file archives, get help with calculator and computer programming, or simply chat with like-minded coders and tech and calculator enthusiasts via the site-wide AJAX SAX widget? Registration for a free Cemetech account only takes a minute.

» Go to Registration page
Page 1 of 1
» All times are UTC - 5 Hours
 
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum

 

Advertisement