############################################## ### Exported solution in various formats ### ############################################## ### Solution format: F(1:O) G(1:M) X(1:N) ### ############################################## ######################### # plain number format # ######################### 0.0 1.0 0.0 0.0 ############################ # comma separated format # ############################ [ 0.0, 1.0, 0.0, 0.0]; ################################ # semicolon separated format # ################################ [ 0.0; 1.0; 0.0; 0.0]; ################################### # zero-starting [] index format # ################################### f[0] = 0.0; f[1] = 1.0; -------------------------- x[0] = 0.0; x[1] = 0.0; ################################## # one-starting () index format # ################################## F(1) = 0.0 F(2) = 1.0 -------------------------- X(1) = 0.0 X(2) = 0.0