gistlib
To define the variables x, y, and a with the given values in MATLAB, you can simply write:
main.mx = 3.5; y = -2; a = -1.09; 28 chars4 lines
x = 3.5; y = -2; a = -1.09;
After running this code, the variables x, y, and a will be assigned with the given values.
gistlibby LogSnag