home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / sci / math / symbolic / 2066 < prev    next >
Encoding:
Internet Message Format  |  1992-07-25  |  1.8 KB

  1. Path: sparky!uunet!usc!noiro.acs.uci.edu!beckman.com!dn66!a_rubin
  2. Newsgroups: sci.math.symbolic
  3. Subject: Re: Mathematic Maual or Help on some functions
  4. Message-ID: <a_rubin.712004653@dn66>
  5. From: a_rubin@dsg4.dse.beckman.com (Arthur Rubin)
  6. Date: 24 Jul 92 19:04:13 GMT
  7. References: <1992Jul22.211459.6586@cs.albany.edu>
  8. Keywords: Mathematica.
  9. Nntp-Posting-Host: dn66.dse.beckman.com
  10. Lines: 34
  11.  
  12. In <1992Jul22.211459.6586@cs.albany.edu> saxena@cs.albany.edu (Tushar Saxena) writes:
  13.  
  14.  
  15. >I have a file which is in Mathematica and we here only have Maple.
  16. >I am thus trying to rewrite that file in Maple. There are certain
  17. >functions in Mathematica that I am having problem understanding. It
  18. >may be noted that I do not have any maual etc to go by. I am just
  19. >looking at the Mathematica commands and trying to make whatever I can
  20. >of them. Obviouly I could not get very far!
  21.  
  22. >I would like to know if there is any manual for mathematica in some
  23. >free domain. If not, can somebody please mail it to me? If none of
  24. >the above are possible, then please tell me what the following commands
  25. >could mean :
  26.  
  27. >1]  <<roots.m;
  28.  
  29. Execute the file "roots.m".
  30.  
  31. >2] trootlist=Table[Join[roots[[i]], {1}], {i, 1, Length[roots]}];
  32.  
  33. If "roots" is of the form {{a_11,a_12,...a_1k},(a_21,a_22,...,a_2l},...}, set "trootlist" to
  34. {{a_11,a_12,...a_1k,1},(a_21,a_22,...,a_2l,1},...}.
  35.  
  36. Note also that this is not good mathematica code;
  37.  
  38. trootlist = {Join[#,{1}]&) /@ roots
  39.  
  40. would be more understandable (to someone familiar with Mathematica).
  41. --
  42. Arthur L. Rubin: a_rubin@dsg4.dse.beckman.com (work) Beckman Instruments/Brea
  43. 216-5888@mcimail.com 70707.453@compuserve.com arthur@pnet01.cts.com (personal)
  44. My opinions are my own, and do not represent those of my employer.
  45. Our news system is unstable; if you want to be sure I see a post, mail it.
  46.