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