User Portlet User Portlet

Discussions
Sorry about the delay. I usually can't reply on weekdays, thanks to workload. The attached file is pretty much what you need for this job. It is not complete, since I do not understand ECEF and the format is not directly supported by...
Thank you. It works. And now it's time to adapt it. Here's the thing... I am an undergrad researcher and this is part of a research project. I have studied this code, I know how it works, and even learned some new commands, which is the point of...
I can assure you that Mathematica is *not* garbage. Unless you already program, it is probably the most complex program you might ever use. (If you do program, I am sure that you realize that each language has its own syntax, and you can't assume...
del
Length[myList]
I would also sprinkle some semicolons after the Print commands: (*Create empty lists*)xlist = {}; ylist = {}; zlist = {}; (*Take inputs for ECEF*)(Label[startinput]; x = Input["What is the x coordinate?"]; y = Input["What...
I give up. Mathematica, please give me a refund. I'm dropping out of school because I have no future in this line of work. I don't have an IQ of 500000 so I'll never be able to learn Mathematica.
Here is my code: (* Take inputs for ECEF *) x = Input["What is the x coordinate?"]; y = Input["What is the y coordinate?"]; z = Input["What is the z coordinate?"]; (* Put in Coordinate Form *) GeoPositionXYZ[{x, y, z}, "ITRF00"]; (*...