Latex, Mathematica, and journals Can anyone tell me why there is no WYSIWYG interface for Latex? Any time I want to publish a paper I have to relearn it again, since I publish rarely. I would gladly use MS Word if the math journals would accept it. And is there any movement to accepting Mathematica output, properly formatted? Steve Gray ... 19 May 2010 20:29
= {f[a, b], g[c, On 5/14/10 at 5:35 AM, lshifr(a)gmail.com (Leonid Shifrin) wrote: How about In[1]:= MapThread[Apply, {{f, g}, {{a, b}, {c, d}}}] Out[1]= {f[a, b], g[c, d]} Here is another way In[1]:= Tr[Through[{f, g}[#]] & /@ {{a, b}, {c, d}}, List] Out[1]= {f[{a, b}], g[{c, d}]} But in terms of simplicity, usin... 15 May 2010 07:12
Execute .m file with JLink We would like to execute a .m file, with JLink against Mathematica Player Pro 7. We are not sure if it is our java code or if the problem is in the .m file. We can execute simple statements directly from the java program with JLink but we get no output from a .m file (we expect the output to be a csv-file writte... 18 May 2010 07:03
Converting colors to height values The Lunar Orbiter Laser Altimeter has a website http://lro.gsfc.nasa.gov/lola/science.html where jpegs are posted of regions of the moon. I would like to convert the color information to height values. A scale is posted with the images that looks a lot like Rainbow, a ColorFunction. I have Inserted the jpeg of C... 14 May 2010 09:29
GeometricTransformation causes dislocated At 06:26 AM 5/13/2010, Tibor wrote: Hi, I would like to export some pictures from Mathematica into vector graphics format. I use Graphics3D container and GeometricTransformation command to locate my arrows in 3D space. When exporting this into eps or PDF file format the arrowheads get messed up in the resul... 14 May 2010 06:15
innerApply[{f, g}, {{a, b}, {c, d}}] = {f[a, b], g[c, Hi Fred, How about In[1]:= MapThread[Apply, {{f, g}, {{a, b}, {c, d}}}] Out[1]= {f[a, b], g[c, d]} Regards, Leonid On Thu, May 13, 2010 at 3:25 PM, Fred Klingener <gigabitbucket(a)brockeng.com>wrote: This seems to work fine, but there must be a less clumsy way to do it: Clear[innerApply, f... 14 May 2010 06:15
= {f[a, b], g[c, d]} ? On 5/13/10 at 7:25 AM, gigabitbucket(a)BrockEng.com (Fred Klingener) wrote: This seems to work fine, but there must be a less clumsy way to do it: Clear[innerApply, functionList, argumentList, f, g, a, b, c, d] innerApply[functionList_, argumentList_] := Table[functionList[[j]] @@ argumentList[[j]], {j, ... 14 May 2010 06:15
Genetic Algorithm Hi, Are there any packages that implement a genetic algorithm in Mathematica? We would like to optimize a vector of approximately 50 parameters. Best wishes, Brian= ... 15 May 2010 07:12
innerApply[{f, g}, {{a, b}, {c, d}}] = {f[a, b], In[]:== innerApply[f_,a_]:==Apply@@#&/@Transpose[{f,a}] innerApply[{f,g},{{a,b},{c,d}}] Out[]== {f[a,b],g[c,d]} David %^> -----Original Message----- From: Fred Klingener [mailto:gigabitbucket(a)BrockEng.com] Sent: 13 May 2010 12:26 To: mathgroup(a)smc.vnet.net Subject: innerApply[{f, g}, {{a... 14 May 2010 06:15
Plotting piecewise in 2D Hi Please take a look at DensityPlot[If[x == 0 && y == 0, 1000, 0], {x, -1, 1}, {y, -1, 1}] This just gives me a uniform plot. Why does the peak at (0,0) not show up? Best, Jimmy. ... 15 May 2010 07:12 |