Addressing Question 1: As you pointed out who can be helpful to see the variables in the current partition or who partitionname.* will show you all variables of a partition or who *.* will show you variables in all partitions. But you can't do anything with it because it is only echo'd to the screen. However there is a command that you can find in the help and briefly in the manual and that is the directory command. E.g.:
who main.*
main:
a -- 1x3
b -- 1x1
c -- 1x1
d=directory("main.*")
d (a row vector of strings) = main.a main.b main.c
d'
ans (a column vector of strings) =
main.a
main.b
main.c
Now this is the fun part:
The directory command actually uses a different command to achieve this and in the right circumstances this is handy in scripting:
[out=format] === who main.*
The use of the === comes in handy for lots of purposes to find out more about it go to:P6-35-36 of the Xmath Basics Manual.
Then you can use the output and parse it like you would anyother output to sort etc.
Garrett
Garrett Thurston
gthurston@foliage.com
Phone: 781.993.5540