<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel rdf:about="https://community.wolfram.com">
    <title>Community RSS Feed</title>
    <link>https://community.wolfram.com</link>
    <description>RSS Feed for Wolfram Community showing questions tagged with Mathematica with no replies sorted by most viewed.</description>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/516854" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/435767" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/471839" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/370999" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/485974" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/383178" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/428854" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/1793523" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/356128" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/428815" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/552479" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/407668" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/247415" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/507636" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/1046546" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/450989" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/391202" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/471104" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/523344" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/1818557" />
      </rdf:Seq>
    </items>
  </channel>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/516854">
    <title>How to Install HadoopLink?</title>
    <link>https://community.wolfram.com/groups/-/m/t/516854</link>
    <description>Hello, I am trying to use the HadoopLink package for the first time, and running into a few challenges.  I am hoping someone out there is using this successfully, and might have some tips for a smooth installation in the current version of mathematica (10.2 at the time of writing this).  &#xD;
&#xD;
I have downloaded the open-source project and I am following along with [HadoopLink installation instructions on GitHub][1].&#xD;
&#xD;
I have unpacked the .zip and placed the HadoopLink folder (and only that folder, not the entire unpacked project) into my $User/Libarary/Mathematica/Applications folder, and loaded the package using:&#xD;
&#xD;
    &amp;lt;&amp;lt; HadoopLink`&#xD;
&#xD;
But when I proceed to the next step, and execute this code...&#xD;
&#xD;
    link = OpenHadoopLink[&#xD;
       &amp;#034;fs.default.name&amp;#034; -&amp;gt; &amp;#034;hdfs://hadoopheadlx.wolfram.com:8020&amp;#034;,&#xD;
       &amp;#034;mapred.job.tracker&amp;#034; -&amp;gt; &amp;#034;hadoopheadlx.wolfram.com:8021&amp;#034;];&#xD;
&#xD;
    DFSFileNames[link]&#xD;
&#xD;
Mathematica output spews a bunch of Java exceptions (attached).  Anybody have more detailed instructions on setting up HadoopLink?  Maybe I should have put the entire project folder into the /Applications folder instead.  I will try that now...&#xD;
&#xD;
  [1]: https://github.com/shadanan/HadoopLink</description>
    <dc:creator>Caitlin Ramsey</dc:creator>
    <dc:date>2015-06-22T15:09:06Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/435767">
    <title>How to recover notebook state after crash or closing a notebook, using .mx</title>
    <link>https://community.wolfram.com/groups/-/m/t/435767</link>
    <description>I have tried to find a solution to this problem in various places and thought I had it solved, but apparently not.&#xD;
&#xD;
When a Mathematica notebook is closed or Mathematica crashes, a lot of stuff is lost, even if a Save was just done. Its not clear to me what kinds of things are lost but I believe it includes definitions.&#xD;
&#xD;
I have a large notebook for which some definitions are based on symbolic integrals that take a long time to compute, for example. I think that data can also be lost. Obviously I dont want to re-evaluate the entire notebook every time I open it; in fact, Im not even sure that would work due to the interactive nature of notebooks and the fact that typically one evaluates only part of a notebook and then another part.&#xD;
&#xD;
Here is what I have tried. I thought it was working in the past but it does not work now. There are two parts: one saves to a .mx file and one reads from the same .mx file. Note that my file path contains spaces.&#xD;
&#xD;
    (* Save to .mx file. *)&#xD;
    mxFileName = StringReplace[NotebookFileName[], &amp;#034;.nb&amp;#034; -&amp;gt; &amp;#034;.mx&amp;#034;];&#xD;
    DumpSave[mxFileName, Evaluate@Context[]];&#xD;
and&#xD;
&#xD;
    (* Retrieve from saved .mx file. *)&#xD;
    mxFileName = StringReplace[NotebookFileName[], &amp;#034;.nb&amp;#034; -&amp;gt; &amp;#034;.mx&amp;#034;];&#xD;
    Get[mxFileName];&#xD;
When the retrieve part is executed, I get complaints of multiple contexts and shadowing, such as&#xD;
&#xD;
    x$::shdw: Symbol x$ appears in multiple contexts {Notebook$$21$649972`,Notebook$$29$735513`}; definitions in context Notebook$$21$649972` may shadow or be shadowed by other definitions. &amp;gt;&amp;gt;&#xD;
&#xD;
I understand that when I re-open the saved .nb file it gets a new context name, in this case Notebook++21+649972-, and by examining the top of the .mx file it is apparent that it is associated with another context, in this case Notebook++29$735513- which is probably the context of the notebook before closing/crashing. [[Note that in this paragraph I replaced the dollar symbol with + and the tick mark with - to prevent weird formatting within this forum post.]] Note that all of my notebook contexts are Unique to this notebook.&amp;#034;&#xD;
&#xD;
I have tried renaming the new context with the old context name, as in&#xD;
&#xD;
    $Context=&amp;#034;Notebook$$29$735513`&#xD;
&#xD;
before running the retrieve code but none of my definitions are restored.&#xD;
&#xD;
I feel that I am close to making this work and this approach seened to work on small test notebooks. What am I doing wrong?&#xD;
&#xD;
Jerry</description>
    <dc:creator>Jerry</dc:creator>
    <dc:date>2015-02-05T21:54:02Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/471839">
    <title>Upgrade from Mathematica 10.0.2 to 10.1.0 home edition for free?</title>
    <link>https://community.wolfram.com/groups/-/m/t/471839</link>
    <description>Hi,&#xD;
I would like to know if the upgrade for Mathematica 10.0.2 home edition to 10.1 home edition is seen as a whole new version and therefor should be a paid upgrade (aprox 90 dollar). &#xD;
&#xD;
regards,&#xD;
Lou</description>
    <dc:creator>l van Veen</dc:creator>
    <dc:date>2015-04-01T20:45:15Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/370999">
    <title>How to get API Data From Azure Data Market Place?</title>
    <link>https://community.wolfram.com/groups/-/m/t/370999</link>
    <description>I have a lot of different project that require data. One awesome source of data I found is:&#xD;
https://datamarket.azure.com&#xD;
&#xD;
I know how to get simple API data from GET but not sure how to do this Microsoft one.&#xD;
&#xD;
I looked through the tutorials and videos and none really get into the nitty gritty of pulling in API data in multiple ways.</description>
    <dc:creator>David Johnston</dc:creator>
    <dc:date>2014-10-17T02:10:08Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/485974">
    <title>DynamicModule issues with Refresh, controls, CDF, and auto executing</title>
    <link>https://community.wolfram.com/groups/-/m/t/485974</link>
    <description>Hello,&#xD;
&#xD;
I am in the middle of making a CDF for a collection of expensive calcuations and plots. I&amp;#039;ve gone with DynamicModule and have read the documentation but I&amp;#039;ve obviously missed a few things as it is not working as expected. The code below demonstrates my problem but the actual code of calcuations and plots is much, much larger.&#xD;
&#xD;
1. The controls created by the makeControl function for the dynamic variables do not display on first execution but everything else does. That is, if you&#xD;
 - delete the output cell,&#xD;
 - quit and then start the kernel,&#xD;
 - and execute the module&#xD;
&#xD;
 then those controls show as the text of the commands that make them. Then executing the module a second time the controls show as the are supposed to.&#xD;
The plots and charts are linked to the update variable and refresh when the Run Simulation button is clicked on both the first evaluation and the second evaluation.&#xD;
&#xD;
2. The Dynamic@Refresh keeps kicking out a Null. If I end it with a ; then none of the plots and tables update when the Run Simulation button is pressed. This seems odd that making it not display output results in it not running the code inside. Is this a bug?&#xD;
&#xD;
3. When previewed as CDF Player I get a ton of errors from the FE&amp;#039; context when I click the Run Simulation button. I have SaveDefinitions -&amp;gt; True on the module so am not certain why this is happening.&#xD;
&#xD;
4. When the notebook window is moved the simulation runs repeatedly.  Also, when CDF Player is previewed moving the window it is in causes the simulation to repeatedly run. This only happens in the CDF Player preview until the Run Simulation button is pressed. After it is pressed moving the window does not cause the simulation to run. It always runs in the notebook when the window is moved even after pressing the Run Simulation button. It is an expensive simulation so this behaviour is very much not desired.&#xD;
&#xD;
Notebook is attached with code example that has all four issues.</description>
    <dc:creator>Edmund Robinson</dc:creator>
    <dc:date>2015-04-25T21:18:26Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/383178">
    <title>IT WAS UNABLE TO... ImplicitRegion &amp;amp; DiscretizeRegion</title>
    <link>https://community.wolfram.com/groups/-/m/t/383178</link>
    <description>**Hello,&#xD;
I&amp;#039;m trying to discretize a very fine ring with &amp;#034;ImplicitRegion&amp;#034;, but Mathematica does not let me.**&#xD;
&#xD;
   in:  ?x=ImplicitRegion[?0.12?^2?x^2+y^2??0.125?^2,{{x,-0.125,0.125},{y,-0.125,0.125},{z,0,1.}}]&#xD;
&#xD;
out: ImplicitRegion[0.0144?x^2+y^2?0.015625&amp;amp;&amp;amp;-0.125?x?0.125&amp;amp;&amp;amp;-0.125?y?0.125&amp;amp;&amp;amp;0?z?1.,{x,y,z}]&#xD;
&#xD;
**Answer:**    DiscretizeRegion::drf: DiscretizeRegion was unable to discretize the region ImplicitRegion[&amp;lt;&amp;lt;2&amp;gt;&amp;gt;]. &amp;gt;&amp;gt;&#xD;
&#xD;
**BUT is a 3D Región, Why was it unable?.**&#xD;
&#xD;
**Equal if i use:**&#xD;
&#xD;
in: ?x=RegionDifference[Cylinder[{{0,0,0},{0,0,1}},0.125],Cylinder[{{0,0,0},{0,0,1}},0.12]]&#xD;
&#xD;
out: ImplicitRegion[0.0144?x^2+y^2?0.015625&amp;amp;&amp;amp;-0.125?x?0.125&amp;amp;&amp;amp;-0.125?y?0.125&amp;amp;&amp;amp;0?z?1.,{x,y,z}]&#xD;
&#xD;
**Answer:**    DiscretizeRegion::drf: DiscretizeRegion was unable to discretize the region ImplicitRegion[&amp;lt;&amp;lt;2&amp;gt;&amp;gt;]. &amp;gt;&amp;gt;&#xD;
&#xD;
How can i do?, Thanks.&#xD;
&#xD;
Jesús.</description>
    <dc:creator>Jesús Manuel Cillero Ares</dc:creator>
    <dc:date>2014-11-03T19:36:16Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/428854">
    <title>Speeding up  a simulation</title>
    <link>https://community.wolfram.com/groups/-/m/t/428854</link>
    <description>Hi All,&#xD;
&#xD;
   I have tried my best to speed up the simulation below. Could it be made more time efficient ?  Please ignore the LV function for now.&#xD;
&#xD;
        &#xD;
    TFinal = 0.5;&#xD;
    NN = 10;&#xD;
    r = 0;&#xD;
    dt = TFinal/NN;&#xD;
    (*Initial Stock*)&#xD;
    (*All the parameters should be easily extractable from the files \&#xD;
    available*)&#xD;
    S0 = 1;&#xD;
    &#xD;
    Num = 100000;&#xD;
    &#xD;
    (**)&#xD;
    &#xD;
    Tmin = 0.01;&#xD;
    T = Tmin;&#xD;
    LV = Compile[{{x, _Real}}, 0.8];&#xD;
    (******************)&#xD;
    &#xD;
    &#xD;
    &#xD;
    ParallelEvaluate[Off[InterpolatingFunction::dmval]];&#xD;
    &#xD;
    (*Initial Simulation Block*)&#xD;
    SimPathsLV = Transpose[Reap[&#xD;
          Sow[ParallelTable[S0, {Num}]];&#xD;
          Sow[&#xD;
           SamplePaths2 = &#xD;
            ParallelTable[&#xD;
             Nest[(a = RandomVariate[NormalDistribution[0, 1]]; #*&#xD;
                 Exp[((r - 0.5*(LV[#])^2)*dt + (LV[#])*Sqrt[dt]*a)]) &amp;amp;, &#xD;
              S0, 1], {Num}]];&#xD;
          For[k = 0, T &amp;lt; TFinal, k++,&#xD;
           T = T + dt;&#xD;
           Sow[&#xD;
            SamplePaths2 = &#xD;
             ParallelTable[&#xD;
              Nest[(a = RandomVariate[NormalDistribution[0, 1]]; #*&#xD;
                  Exp[((r - 0.5*(LV[#])^2)*dt + (LV[#])*Sqrt[dt]*a)]) &amp;amp;, &#xD;
               SamplePaths2[[i]], 1], {i, 1, Num}]]&#xD;
           (*Appending out iteration of the simulation*)&#xD;
           ]][[2, 1]]] // Timing;&#xD;
    &#xD;
    SimPathsLV[[1]]</description>
    <dc:creator>Nabeel Butt</dc:creator>
    <dc:date>2015-01-26T19:53:49Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/1793523">
    <title>Use an InputField going with the result of a RadioButon?</title>
    <link>https://community.wolfram.com/groups/-/m/t/1793523</link>
    <description>I am looking for a solution for a minor but annoying flaw in a program that I made for building a CDF for analysing the properties of accumulations of random numbers. In the CDF I can choose for several types of such accumulations through a number of radiobuttons. With each radiobutton I can make a list that contains the sum of the accummulation in question along with several parameters and quantities that I for instance need for a text above the final chart of the accumulation and some additional special properties of it. &#xD;
Together with each radiobutton for any accumulation with a certain probability distribution the CDF has one or more inputfields for the necessary parameters, such as mean and standard deviation for a normal distribution.&#xD;
My problem is the following: After pushing a radiobutton and then inserting a number in an inputfield that goes with that button, and then hitting Enter or clicking with the mouse outside of the input field, the radiobutton turns white and in order to make the number in the input field do its work I have to push this radiobutton anew. What I want is that the new situation is activated right away after entering a number in the inputfield and then pushing Enter of clicking with the mouse outside of the inputfield. I hope there is a solution for this.&#xD;
This is the program all the way stripped down to the relevant section: &#xD;
&#xD;
    Export[&amp;#034;Testpanel.cdf&amp;#034;,&#xD;
     CreateDocument[{   &#xD;
       DynamicModule[{y, beta, center, standarddeviation, mean},&#xD;
        Row[{&#xD;
          Row[{&#xD;
            Dynamic[&#xD;
             SeedRandom[1];&#xD;
             RadioButton[&#xD;
              Dynamic[y], {&amp;#034; Laplace&amp;#034;, &amp;#034; distribution&amp;#034;, &amp;#034; &amp;#034;, &#xD;
               Accumulate[&#xD;
                RandomVariate[LaplaceDistribution[center, beta], 1000]], &#xD;
               0}]],&#xD;
            TextCell[&amp;#034; Laplace &amp;#034;],&#xD;
            center = 0;&#xD;
            InputField[Dynamic[center], FieldSize -&amp;gt; 3],&#xD;
            beta = 1.7;&#xD;
            InputField[Dynamic[beta], FieldSize -&amp;gt; 3],&#xD;
            TextCell[&amp;#034;  &amp;#034;],&#xD;
            Dynamic[&#xD;
             SeedRandom[1];&#xD;
             RadioButton[&#xD;
              Dynamic[y], {&amp;#034; normal&amp;#034;, &amp;#034; distribution&amp;#034;, &amp;#034; &amp;#034;, &#xD;
               Accumulate[&#xD;
                RandomVariate[NormalDistribution[mean, standarddeviation],&#xD;
                  1000]], 0}]],&#xD;
            TextCell[&amp;#034;  Normal  &amp;#034;],&#xD;
            mean = 0;&#xD;
            standarddeviation = 1;&#xD;
            InputField[Dynamic[mean], FieldSize -&amp;gt; 3],&#xD;
            InputField[Dynamic[standarddeviation], FieldSize -&amp;gt; 3], &#xD;
            TextCell[&amp;#034;  &amp;#034;]&#xD;
            }],&#xD;
          Dynamic[Show[&#xD;
            ListPlot[&#xD;
             Partition[Riffle[Range[1, 500], y[[4]][[1 ;; 500]]], 2],&#xD;
             PlotStyle -&amp;gt; {PointSize[0.003], White}, Background -&amp;gt; Black ],&#xD;
            ImageSize -&amp;gt; 500]]      }]     ]}]]&#xD;
**Additional information**: In the meantime I discovered that after putting a new number in an inputfield instead of hitting Enter or clicking outside of the inputfield and then pushing the radiobutton again one may also get desired result by right away pushing the Radiobutton 3 times. So in fact my problem may be considered as solved.</description>
    <dc:creator>Laurens Wachters</dc:creator>
    <dc:date>2019-09-20T12:38:22Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/356128">
    <title>How to plot multiple surfaces together in Wolfram|Alpha</title>
    <link>https://community.wolfram.com/groups/-/m/t/356128</link>
    <description>Dear members of the group&#xD;
Could some one explain why the following line produces two surfaces in the same Plot in Mathematica, but the same line  always produces two separated plot in Wolfram|Alpha?&#xD;
&#xD;
    Plot3D[{Sin[x y], Cos[x y]}, {x, -\[Pi], \[Pi]}, {y, -\[Pi], \[Pi]}]&#xD;
&#xD;
Thanks in advance.&#xD;
&#xD;
Jesus Rico</description>
    <dc:creator>J Jesus Rico-Melgoza</dc:creator>
    <dc:date>2014-09-26T18:25:31Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/428815">
    <title>Speeding up Interpolated function computation?</title>
    <link>https://community.wolfram.com/groups/-/m/t/428815</link>
    <description>I am interested to know if there is a way I could speed up computation involving an interpolated function ( does the kernel generate an internally compiled code?) . Generally Compile works well for most types of problems not involving interpolation. In this case what is the suggested approach without using parallelization ?&#xD;
The relevant code is below:&#xD;
&#xD;
    fi = Interpolation[Table[{i, Sin[i]}, {i, 0, 1, 0.1}]];&#xD;
    a1 = Table[fi[0.35], {100000}] // Timing;&#xD;
    a2 = Table[Sin[0.35], {i, 1, 100000}] // Timing;&#xD;
    a1[[1]]&#xD;
    a2[[1]]</description>
    <dc:creator>Nabeel Butt</dc:creator>
    <dc:date>2015-01-26T18:54:55Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/552479">
    <title>How to incorporate crossover probability in my program?</title>
    <link>https://community.wolfram.com/groups/-/m/t/552479</link>
    <description>I am working with genetic algorithm for optimization. I feel problem in crossover of binary chromosomes. &#xD;
I actually succeeded in making code for crossover of chromosome but now I failed to incorporate crossover probability in it.&#xD;
I want crossover probability of 0.85 which; in my program means, about 3 binary sets (elements) out of 18 are copies as same without cross overing.&#xD;
Here, I share my program which I made until now; I need incorporation of cross over probability in it.&#xD;
&#xD;
    crossover[c1_List, c2_List] /; Length @ c1 == Length @ c2 := &#xD;
      Module[{cut, c1a, c1p, c2a, c2p}, &#xD;
        cut = RandomInteger[{2, Length @ c1 - 1}]; &#xD;
        {c1a, c1p} = {c1[[1 ;; cut]], c1[[cut + 1 ;; -1]]}; &#xD;
        {c2a, c2p} = {c2[[1 ;; cut]], c2[[cut + 1 ;; -1]]}; &#xD;
        {cut, Join[c1a, c2p], Join[c2a, c1p]}]; &#xD;
    &#xD;
    SeedRandom[42];&#xD;
    genome1 = RandomInteger[1, {6, 8}]&#xD;
    genome2 = RandomInteger[1, {6, 8}]&#xD;
    MapThread[crossover, {genome1, genome2}]&#xD;
&#xD;
Thanks in advance. :)</description>
    <dc:creator>mamoona arshad</dc:creator>
    <dc:date>2015-08-24T08:28:14Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/407668">
    <title>(automatically add) Closing Brackets, Braces, and Parentheses</title>
    <link>https://community.wolfram.com/groups/-/m/t/407668</link>
    <description>Hi,&#xD;
&#xD;
One of the greatest difficulties I have with Mathematica is pairing braces, brackets, and parentheses. I am constantly forgetting one and it is quite  difficult to correct this type of mistake. On the Mac, I&amp;#039;ve learned about Ctrl+. and Shift-Command B, which are helpful, but I still struggle.&#xD;
&#xD;
When I am working in RStudio, typing in my R code for statistics, if I open a bracket, a closing bracket is automatically entered. If it was a mistake to  hit the bracket key, deleting the left bracket deletes both opening and closing brackets automatically. The same thing happens when you enter an opening brace or an opening parentheses, closing braces and parentheses are automatically included.&#xD;
&#xD;
A lot of folks on this website probably have a rich knowledge of the history of Mathematica, but I really wonder why Mathematica doesn&amp;#039;t have a similar tool. Or perhaps it does and there is something I can turn on to make this happen when I am entering code?&#xD;
&#xD;
If not, is there some reason why Mathematica has never favored this procedure?</description>
    <dc:creator>David Arnold</dc:creator>
    <dc:date>2014-12-15T03:26:17Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/247415">
    <title>Methods of performing PARAFAC/CANDECOMP analysis in Mathematica</title>
    <link>https://community.wolfram.com/groups/-/m/t/247415</link>
    <description>Hello Community,

I am working with oceans of chromatographic data gathered from HPLC with DAD endpoint detection. I am currently considering performing some PARAFAC/CANDECOMP on the three-dimensional data, and wanted to hear if anyone has any experience/suggestions on how PARAFAC/CANDECOMP can be performed using Mathematica?

I know of some other mathematical softwares that can do the job, but I haven&amp;#039;t been able to find any information on that topic in Mathematica. I would prefer using Mathematica, as I have some other scripts working on the data. I have speculated on whether some &amp;#034;r&amp;#034; package could be called from Mathematica, to process the data, but I don&amp;#039;t know if this is possible.

So if anyone has some experience they can share and can point me in some direction from which the problem is easiest to tackel, I am all ears. Does not have to be applied on the same data set, as the one I am working with.


Best Regards</description>
    <dc:creator>Simon P.</dc:creator>
    <dc:date>2014-05-05T14:34:22Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/507636">
    <title>NDSolve doesn&amp;#039;t work for this partial differential equations, Help...</title>
    <link>https://community.wolfram.com/groups/-/m/t/507636</link>
    <description>Hi, I try to use NDSolve to do this partial differential equations, but the result is wrong... The source term is a Gaussian pulse as time and an exponential decay with the depth z. The result should be going to some small value at a large time, but it keeps &amp;#034;plat&amp;#034; when it goes to a large time.&#xD;
I attach my notebook in the attachment, thank you!&#xD;
&#xD;
![p1][1]&#xD;
![p2][2]&#xD;
![p3][3]&#xD;
![p4][4]&#xD;
![p5][5]&#xD;
![p6][6]&#xD;
&#xD;
&#xD;
  [1]: /c/portal/getImageAttachment?filename=p1.png&amp;amp;userId=507361&#xD;
  [2]: /c/portal/getImageAttachment?filename=p2.png&amp;amp;userId=507361&#xD;
  [3]: /c/portal/getImageAttachment?filename=p3.png&amp;amp;userId=507361&#xD;
  [4]: /c/portal/getImageAttachment?filename=p4.png&amp;amp;userId=507361&#xD;
  [5]: /c/portal/getImageAttachment?filename=p5.png&amp;amp;userId=507361&#xD;
  [6]: /c/portal/getImageAttachment?filename=p6.png&amp;amp;userId=507361</description>
    <dc:creator>Wit Z</dc:creator>
    <dc:date>2015-05-31T22:59:21Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/1046546">
    <title>Get right PDF output from Slide Show using &amp;#034;Water&amp;#034; Stylesheet?</title>
    <link>https://community.wolfram.com/groups/-/m/t/1046546</link>
    <description>I am using the &amp;#034;Water&amp;#034; stylesheet for a slide show that has some problems when printing the slides as PDF, etc. When using e.g. ItemNumbered cells the item numbers get cropped at the left edge.&#xD;
&#xD;
Does anybody knwo which style settings to adjust to keep the full cell visible?&#xD;
&#xD;
To clarify the issue take the following minimal slide example (StyleSheet &amp;#034;Water&amp;#034;)&#xD;
&#xD;
![enter image description here][2]&#xD;
&#xD;
Switching to Printout environment gives:&#xD;
&#xD;
![enter image description here][3]&#xD;
&#xD;
Note how the item numbers are cut off at the left page edge. How can I change that?&#xD;
&#xD;
&#xD;
----------&#xD;
&#xD;
This is also cross-posted here: http://mathematica.stackexchange.com/questions/141186&#xD;
&#xD;
  [1]: http://mathematica.stackexchange.com/questions/141186/modify-slide-show-printout-settings&#xD;
  [2]: http://community.wolfram.com//c/portal/getImageAttachment?filename=working.png&amp;amp;userId=87900&#xD;
  [3]: http://community.wolfram.com//c/portal/getImageAttachment?filename=printoutjpg.jpg&amp;amp;userId=87900</description>
    <dc:creator>Markus Roellig</dc:creator>
    <dc:date>2017-03-29T08:22:12Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/450989">
    <title>ParametricNDSolveValue error</title>
    <link>https://community.wolfram.com/groups/-/m/t/450989</link>
    <description>Hello guys, I&amp;#039;ve been working on ParametricNDSolveValue with 4th order Runge-Kutta method and sometimes I received this error&#xD;
&#xD;
    ParametricNDSolveValue::mxst: Maximum number of 10000 steps reached at the point x$214882$215402 == 0.9256478123350554`.&#xD;
&#xD;
    InterpolatingFunction::dmval: &amp;#034;Input value {1.} lies outside the range of data in the interpolating function. Extrapolation will be used.&amp;#034;&#xD;
&#xD;
    FindRoot::lstol: The line search decreased the step size to within tolerance specified by AccuracyGoal and PrecisionGoal but was unable to find a sufficient decrease in the merit function. You may need more than MachinePrecision digits of working precision to meet these tolerances&#xD;
&#xD;
For the RK4 method my StepSize-&amp;gt;1/1000, I&amp;#039;ve tried changing the PrecisionGoal and AccuracyGoal, only the point of x changes but also with the same error.&#xD;
This error does not occur all the time, if the I change the value of the inputs, sometimes I don&amp;#039;t receive this error&#xD;
&#xD;
Below is the code from other threads I had post and received help from the community.&#xD;
&#xD;
    prog := Module[{Twater = 300., Tnew = 0, Cwater, Dwater, Ewater, &#xD;
        ClassicalRungeKuttaCoefficients, f, x, y, point, ans, tol = 0.001,&#xD;
         iters = 0, iterLim = 100, prevTnew = 10^5, &#xD;
        plotList = {}}, $MinPrecison = 50;&#xD;
       Cwater = &#xD;
        QuantityMagnitude[&#xD;
         ThermodynamicData[&amp;#034;Water&amp;#034;, &#xD;
          &amp;#034;ThermalConductivity&amp;#034;, {&amp;#034;Temperature&amp;#034; -&amp;gt; &#xD;
            Quantity[Twater, &amp;#034;Kelvins&amp;#034;]}]];&#xD;
       ans = &amp;#034;Twinkle, twinkle, little star,&#xD;
                 How I wonder what you are.&#xD;
                 Up above the world so high,&#xD;
                 Like a diamond in the sky.&#xD;
                 Twinkle, twinkle, little star,&#xD;
                 How I wonder what you are!&amp;#034;;&#xD;
       While[(Abs[prevTnew - Tnew] &amp;gt; tol) &amp;amp;&amp;amp; (iters++ &amp;lt; iterLim), &#xD;
        Dwater = (5 Cwater)/Pi;&#xD;
        Ewater = Dwater^3 + 2*Cwater;&#xD;
        ClassicalRungeKuttaCoefficients[4, prec_] := &#xD;
         With[{amat = {{1/2}, {0, 1/2}, {0, 0, 1}}, &#xD;
           bvec = {1/6, 1/3, 1/3, 1/6}, cvec = {1/2, 1/2, 1}}, &#xD;
          N[{amat, bvec, cvec}, prec]];&#xD;
        f = ParametricNDSolveValue[{SetPrecision[&#xD;
            Derivative[1][y][x] == &#xD;
             Piecewise[{{(y[x] + x^3 + 3 z - 120*Ewater), &#xD;
                0 &amp;lt;= x &amp;lt;= 1}, {(y[x] + x^2 + 2 z), &#xD;
                1 &amp;lt;= x &amp;lt;= 2}, {(y[x] + x + z), 2 &amp;lt;= x &amp;lt;= 3}}], 40], &#xD;
           y[0] == 0}, y[3.], {x, 0., 3.}, z, &#xD;
          Method -&amp;gt; {&amp;#034;ExplicitRungeKutta&amp;#034;, &amp;#034;DifferenceOrder&amp;#034; -&amp;gt; 4, &#xD;
            &amp;#034;Coefficients&amp;#034; -&amp;gt; ClassicalRungeKuttaCoefficients}, &#xD;
          StartingStepSize -&amp;gt; 1/1000];&#xD;
        point = {z /. &#xD;
           FindRoot[f[z] == 100., {z, 0.1}, Evaluated -&amp;gt; False], 100.};&#xD;
        AppendTo[plotList, point];&#xD;
        Print[point];&#xD;
        FindRoot[f[z] == 100., {z, 0.1}, Evaluated -&amp;gt; False];&#xD;
        prevTnew = Tnew;&#xD;
        Tnew = &#xD;
         170 + 1.89*z /. &#xD;
          FindRoot[f[z] == 100., {z, 1}, Evaluated -&amp;gt; False];&#xD;
        Cwater = &#xD;
         QuantityMagnitude[&#xD;
          ThermodynamicData[&amp;#034;Water&amp;#034;, &#xD;
           &amp;#034;ThermalConductivity&amp;#034;, {&amp;#034;Temperature&amp;#034; -&amp;gt; &#xD;
             Quantity[Tnew, &amp;#034;Kelvins&amp;#034;]}]];(*Note Tnew here!*)&#xD;
        Print[&amp;#034;Twater: &amp;#034;, Twater, &amp;#034; Tnew: &amp;#034;, Tnew];];(*End while*)&#xD;
       ans = {&amp;#034;Tnew: &amp;#034;, Tnew, &amp;#034;Cwater: &amp;#034;, Cwater, &amp;#034;Dwater: &amp;#034;, Dwater, &#xD;
         &amp;#034;Ewater: &amp;#034;, Ewater};&#xD;
       Print[&amp;#034;The answer is:\n&amp;#034;, ans];];&#xD;
&#xD;
The question is, I have find the StepSize to 1/1000, so wouldn&amp;#039;t ParametricNDSolveValue run the command with step size of 0.001?&#xD;
Why would it stop before that?&#xD;
NOTE: this is the example of the model, I cannot post my real model.</description>
    <dc:creator>Thai Kee Gan</dc:creator>
    <dc:date>2015-03-02T03:08:30Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/391202">
    <title>Getting Facebook data</title>
    <link>https://community.wolfram.com/groups/-/m/t/391202</link>
    <description>Does anybody know a quick way to get all the locations of your Facebook friends in Mathematica.  It looks to me like you have to transfer the entire user data for each user and then parse out the location info yourself.&#xD;
&#xD;
And, does anybody have access to the code that went with Stephen&amp;#039;s big blog post about all the analysis one can do of Facebook data.  &#xD;
&#xD;
Thanks</description>
    <dc:creator>Mark Lawton</dc:creator>
    <dc:date>2014-11-17T06:02:38Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/471104">
    <title>Acoustic wave equations in two layered media.</title>
    <link>https://community.wolfram.com/groups/-/m/t/471104</link>
    <description>Hello, &#xD;
&#xD;
Although I submitted the same question a couple of days ago here, but I am still trying to solve the 1-dim acoustic wave equation with two different media. Actually, though this equation, I want to know how much the acoustic pulse is reflected and transmitted at the interface. Could you please help me or can give some comments ?&#xD;
In the following code, I used the two continuity conditions of the acoustic wave at the interface of media, which are pressure and displacement continuity conditions. &#xD;
Thank you very much in advance.&#xD;
&#xD;
Remove[&amp;#034;Global`*&amp;#034;];&#xD;
L = 10.0; T = 3.0; (* L : boundary, T : time *)&#xD;
\[Rho]1 = 5; \[Rho]2 = 4; (* mass density of each layer *)&#xD;
v1 = 5; v2 = 4; (* speed of sound of each layer *)&#xD;
(* For continuity conditions at interface, Pressure : \[Rho]1 v1^2 \&#xD;
(D[u1[x,t],x]/.x-&amp;gt;0)== \[Rho]2 v2^2 (D[u2[x,t],x]/.x-&amp;gt;0), \&#xD;
Displacement : u1[0,t]==u2[0,t] *)&#xD;
Sol = NDSolve[{D[u1[x, t], t, t] == v1^2 D[u1[x, t], x, x], &#xD;
    D[u2[x, t], t, t] == &#xD;
     v2^2 D[u2[x, t], x, x], (D[u1[x, t], x] /. x -&amp;gt; L) == &#xD;
     0, (D[u2[x, t], x] /. x -&amp;gt; -L) == &#xD;
     0, \[Rho]1 v1^2 (D[u1[x, t], x] /. &#xD;
        x -&amp;gt; 0) == \[Rho]2 v2^2 (D[u2[x, t], x] /. x -&amp;gt; 0), (D[&#xD;
        u1[x, t], t] /. t -&amp;gt; -1) == 0, (D[u2[x, t], t] /. t -&amp;gt; -1) == &#xD;
     0, u1[x, -1] == Exp[-20 (x - L/2)^2], u2[x, -1] == 0}, {u1, &#xD;
    u2}, {x, -L, L}, {t, -1, T}, MaxSteps -&amp;gt; Infinity, &#xD;
   Method -&amp;gt; {&amp;#034;MethodOfLines&amp;#034;, &#xD;
     &amp;#034;SpatialDiscretization&amp;#034; -&amp;gt; {&amp;#034;TensorProductGrid&amp;#034;}}][[1]]&#xD;
Plot3D[u1[x, t] /. Sol, {x, -L, L}, {t, -1, T}, PlotRange -&amp;gt; All]</description>
    <dc:creator>hwoarang Polar</dc:creator>
    <dc:date>2015-03-31T19:14:23Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/523344">
    <title>Lower-order logical independence of boolean functions ...?</title>
    <link>https://community.wolfram.com/groups/-/m/t/523344</link>
    <description>Attached is some simple-minded code that explores lower-order order logical independence of the boolean functions of two and three variables.&#xD;
&#xD;
Eventually, I&amp;#039;m looking to generalize it to n variables.  For the moment I&amp;#039;m just trying to understand if there&amp;#039;s extant work or code out there that is applicable.&#xD;
&#xD;
Thank you,&#xD;
-- Mark</description>
    <dc:creator>Mark Tuttle</dc:creator>
    <dc:date>2015-07-06T18:40:19Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/1818557">
    <title>Use the Channel framework with an external MQTT broker?</title>
    <link>https://community.wolfram.com/groups/-/m/t/1818557</link>
    <description>I can connect to an external MQTT broker with the MQTTLink` library.&#xD;
&#xD;
Here below an example using the Mosquito.org testing service:&#xD;
&#xD;
    Get@&amp;#034;MQTTLink`&amp;#034;&#xD;
    &#xD;
    imAclientForExternal = CreateClient[];&#xD;
    &#xD;
    ConnectClient[imAclientForExternal, &amp;#034;test.mosquitto.org:1883&amp;#034;];&#xD;
    &#xD;
    TopicSubscribe[imAclientForExternal, &amp;#034;wolframTest&amp;#034;, &#xD;
      &amp;#034;MessageReceivedFunction&amp;#034; :&amp;gt; (Print[&#xD;
          ByteArrayToString[#3[&amp;#034;Data&amp;#034;]]] &amp;amp;)];&#xD;
    &#xD;
    TopicPublish[imAclientForExternal, &#xD;
      &amp;#034;wolframTest&amp;#034; -&amp;gt; &amp;#034;my personal message&amp;#034;];&#xD;
    &#xD;
    TopicUnsubscribe[imAclientForExternal, &amp;#034;wolframTest&amp;#034;]&#xD;
&#xD;
But since this is not a documented library, I was wondering if it is possible, and how, to do exactly the same with the Channel framework.</description>
    <dc:creator>Pedro Fonseca</dc:creator>
    <dc:date>2019-11-03T17:33:20Z</dc:date>
  </item>
</rdf:RDF>

