User Portlet
Discussions |
---|
Here is the requested example code. |
It will need some refinement, but I WORKS! THANK YOU! |
Usually the & is only used to indicate the end of an "anonymous" function that hasn't been previously defined. You can look up "Function" in the help pages and see what you can make of that. It is sometimes confusing for new users because they are... |
Thanks for the help. Both ideas look good. Bob |
Dear Mr. Clarke, It works like a charm! Thank you, Bob Curl |
[mcode]In[1]:= myragged = List[List[a, b], List[List[c, d], List[e, f]]] Out[1]= {{a, b}, {{c, d}, {e, f}}} In[2]:= Put[myragged , "myrag.txt"] In[3]:= diditwork = Get["myrag.txt"] Out[3]= {{a, b}, {{c, d}, {e, f}}} In[4]:= diditwork[[2, 1]] ... |