1- For example how can I initialize a matrix mat mxn? m and n are inputs, for this, I can't put mat={{},{},{}}
2-
v={1.6667,2.3333,3.4444} print(unpack(v)) --> 1.6667 2.3333 3.4444
I want change the format of the result of print(unpack(v)) to .2f for example, the result will be:
v={1.6667,2.3333,3.4444} print(unpack(v)) --> 1.67 2.33 3.44
It is possible??
Thanks for all...