06-21-2011 04:46 PM
Hi Grahmwebb,
If you are interested in viewing how MathScript sees the shape of an array variable at edit time one method might be to open the context help and hover the mouse cursor over the variable name. The context help will display the data type of the variable including a line of text if it is a column or row vector. This might be a little tedious for a large amount of variables but it will at least give you one way to effectively check the shape at edit time.
Cheers!
K Scott
06-21-2011 05:48 PM
My only other suggestion comes from text programming experience and is not particular to Mathscript: use a form of Hungarian notation. This means adding a prefix which gives the type:
cvSomeColumnVector or cv_SomeColumnVector
rvSomeRowVector
mSomeMatrix
Now the name itself should help you recognize what type the variable is.