User Portlet User Portlet

Discussions
I really do need help badly. I am clueless. I'm about ready to just give up.
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...
Here is my code. (* Create empty lists *) xlist={}; ylist={}; zlist={}; (* Take inputs for ECEF *) (Label[startinput];x = Input["What is the x coordinate?"]; y = Input["What is the y coordinate?"]; z = Input["What is the z coordinate?"]; ...
list=Transpose[xlist,ylist,zlist] returns this error: Transpose::nonopt: Options expected (instead of {333333,77777}) beyond position 2 in Transpose[{111111,55555},{222222,66666},{333333,77777}]. An option must be a rule or a list of rules. >>
I'll try that. I'm getting so frustrated. I made a promise to have this project done by the end of summer and I'm only 2% done. If I fail at a research gig, how can I ever expect to succeed as a physicist? I'm starting to think I'll never have...
That might actually be helpful... if there was anyway for anyone other than a rocket scientist to understand how to create empty lists in the first place... I've read the entry for lists a trillion times and the only lists that seem possible to make...
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"]; (*...
I'm starting to think I wasted money on a product that doesn't work... I have the following code: (* Take inputs for ECEF *) x = Input["What is the x coordinate?"]; y = Input["What is the y coordinate?"]; z = Input["What is the...