Inserting some zeros in a list by a rule of positions
How to use Streaming package in v11.1?
Interior of discretized region
Orientation of boundary domain normals
Best Practices for Creating CDF e-textbook
Markdown parser in Mathematica
ListContourPlot with hatched regions
Inserting some zeros in a list by a rule of positions I have a list: mainlist={0.23, 0.34, 0.8, 0.0, -0.2, 0.4, -0.1}; I have to extend the above list to another one finalresult with Length=17. But in finalresult the elements of the mainlist must be ...
- asked by Inzo Babaria (12 votes), answered by John Joseph M. Carrasco (14 votes)
How to use Streaming package in v11.1? https://mathematica.stackexchange.com/questions/154439/how-to-use-streaming-package-in-v11-1
I am trying to use the streaming package for lazy list operations demonstrated in this post. But I found that the package was significantly changed in version 11. After some observations, I found that ...
- asked by happy fish (11 votes), answered by Leonid Shifrin (9 votes)
Interior of discretized region https://mathematica.stackexchange.com/questions/154544/interior-of-discretized-region
I have some domain of interest: r = 0.3; dom = ImplicitRegion[(x - 1/2)^2 + (y - 1/2)^2 >= r^2, {{x, 0, 1}, {y, 0, 1}}]; Now I can extract mesh of the whole domain or just boundary: ...
- asked by user16320 (9 votes), answered by C. E. (10 votes)
Orientation of boundary domain normals https://mathematica.stackexchange.com/questions/154656/orientation-of-boundary-domain-normals
I would like to use BoundaryNormals provided by the ElementMesh object. To demonstrate my problem I will take my favorite domain: dom = ImplicitRegion[(x - 1/2)^2 + (y - 1/2)^2 >= (1/4)^2, {{x, 0, ...
- asked by user16320 (8 votes), answered by user16320 (4 votes)
Best Practices for Creating CDF e-textbook https://mathematica.stackexchange.com/questions/154550/best-practices-for-creating-cdf-e-textbook
I attended a talk given by Eric Schulz a few years ago. It was similar to his talk "Sharing Wisdom Gained from Publishing a CDF Ebook" given here. I am Math instructor and have been creating ...
- asked by Michael McCain 8votes Markdown parser in Mathematica https://mathematica.stackexchange.com/questions/154634/markdown-parser-in-mathematica
Is there already a markdown to XML parser implemented in Mathematica? I wrote a one for my pelican rewrite, but realized I should have asked here first. Mine is almost certainly faulty in a few major ...
- asked by b3m2a1 (7 votes), answered by b3m2a1 (3 votes)
ListContourPlot with hatched regions https://mathematica.stackexchange.com/questions/154481/listcontourplot-with-hatched-regions
I'm using ListContourPlot on a table of data, and I'd like to hash the regions rather than colour them, so the plot works in black and white. data = Flatten[Table[{x, y, Cos[x] + Cos[y]}, {x, 0, 3, ...
- asked by KraZug (7 votes), answered by John Joseph M. Carrasco (8 votes)