So I've never seen it done this way which greatly surprised me, after a moment of thinking. You can remove a single value from a list with a single command:
To remove the sixth element of a list:
Code:
Now that I look at this, this seems almost obvious to me. But every time I've seen it done, it was with a for loop involved somewhere.
To remove the sixth element of a list:
Code:
{1,2,3,4,5,6,7,8,9,0→L₁
augment(seq(L₁(X),X,1,5),seq(L₁(X),X,7,dim(L₁
Now that I look at this, this seems almost obvious to me. But every time I've seen it done, it was with a for loop involved somewhere.