Questions tagged [version-9]
Version-specific issues for Mathematica 9 (other than bugs).
159 questions
4
votes
0
answers
101
views
Plot3D Power::infty error I do not understand
I am receiving Power::infty error when running the following code (and nothing is plotted).
Plot3D[1/k, {m, 0, 1}, {k, m + 1, m + 2}]
The k variable is in [1,3] and ...
0
votes
0
answers
69
views
nth derivative on Wolfram Mathematica 9.0 [duplicate]
I am running into an error when calculating the $nth$ derivative of some function
The code that I am using for determining it is
D[Sin[x],{x,n}]
The output should ...
5
votes
3
answers
528
views
Remove some of the background noise to get clear microscopic image
I have a microscopic image (img1).
I need to analyse it to be like the following image (img2):
But how do I do it in Mathematica (I am using Mathematica 9)? I am not much familiar with the ...
1
vote
0
answers
275
views
Exporting to GIF doesn't work
I cannot export a list of images (or a single image) to GIF format. I use Win10 with Mathematica 9.0. It previously worked on an other device with Win7. I can also export an image to other formats, ...
4
votes
2
answers
960
views
SSL errors when using URLFetch or URLSave in versions 8 or 9
It seems that with Mathematica 8 and 9 it is not possible anymore to
download files from SSL encrypted urls. In my case (Fedora 30) on Mathematica 8
(it has no ...
1
vote
2
answers
468
views
0
votes
0
answers
81
views
Why does Limit not compute simple limits involving integer parts?
I asked Mathematica to compute for me the following limit:
Limit[IntegerPart[M a]/M, M -> Infinity]
Whatever a is, the ...
5
votes
1
answer
474
views
Exporting graphics in eps-format. A change from version 9 to version 11 made it less useful for LaTeX
Recently I ran into this problem when trying to use EPS-images produced by Mathematic in my TeX-documents.
The friendly people at TeX.SE took a look at my eps, and discovered the following "feature" ...
4
votes
1
answer
245
views
Find repeating pattern in 2D list
How it is possible to find repeating pattern and it horizontal shift in 2D list? The example list with repeating pattern could be generated using the following code:
...
0
votes
2
answers
2k
views
How can i draw ellipse in 3D? [closed]
I’m using mathematica 9.0 and want to draw an
Ellipse in 3D. I notice that there is “Sphere”, but not ellipse... what is the easy way do draw one?
Thanks
18
votes
3
answers
1k
views
What functions work in which version of Mathematica
Is there any good documentation on which version will work (remained the same) in which version of Mathematica? Or at least an overview of when functions were introduced?
In this instance for example ...
3
votes
2
answers
845
views
Delete duplicates in a set of Data?
If
n=10;
Union[Flatten[Table[If[PrimeQ[p] == True && p + q == 2 n, {p, q}, {}], {p, 3,
2 n}, {q, 1, 2 n - p}], 1]]
which its output is
...
0
votes
1
answer
168
views
Ordering elements of a list
Let's define some simple functions
...
0
votes
1
answer
499
views
Warning? Export ["...mx"] not downward compatible from Mathematica 11.1.1
Since I have some quite memory expensive calculations to do, I exported my results as lists in the .mx format. Now our office has upgraded to Mathematica 11.1.1. While before 11.1.1 it was also ...
3
votes
1
answer
501
views
Open a hdf5 file in SWMR (single writer multiple reader) mode in Mathematica 9.0?
I'm running an experiment where I want to be able to save my data to HDF5 on a shared network drive on one computer (using python and h5py), and be able to read it and do analysis while it's running (...