Questions on converting data, graphics, sound etc. from Mathematica into other file formats.
-1
votes
0answers
38 views
Overwrite file on export (save as pdf) [closed]
Simple but annoying problem:
I want to export a notebook to pdf, update something, then export again.
I cannot overwrite the file and see the changes immediately.
The software asks if it is OK to ...
4
votes
3answers
102 views
How can write a list as a formatted string to a file
I have two lists:
{a, 1, b} and {b, 1.3, y}
My goal is to print them to file test.dat, so ...
2
votes
1answer
62 views
diff-able text-only notebooks?
I would like to save my Mathematica notebooks as plain-text documents, so that I can keep them under git version control.
I thought that ...
9
votes
1answer
132 views
Dynamic visualization of Graph[] on a webpage
How can we embed a dynamic version of a Graph object on a web page, similar to the one showcased on the networkx home page?
This sort of dynamic visualization can ...
-4
votes
1answer
89 views
Export plot to Excel
Very new to Mathematica. Used the code to solve for the response of a system of spring mass dampers but would like to export the data to Excel.
...
0
votes
0answers
28 views
Exporting large expression [duplicate]
I generated a huge mathematical expression (~200k terms, impossible to simplify yet) and want to save it for later analysis. Last time I did Export to *.nb file and ...
-3
votes
1answer
71 views
Export to CSV is very slow - can performance be improved?
I have to provide data exports from Mathematica to CSV format and it is very slow compared to other formats as can be seen in the following table:
JSON, 15 sec, 8.4 MB
TXT, 23 sec, 5.6 MB
XLSX, ...
2
votes
1answer
64 views
Export to mat file does not work
I use this command from the Mathematica documentation center
Export["1.mat", {"t" -> {{1,2,3}},"u" -> {{4,5,6}}}, "LabeledData"]
to save data as mat file ...
4
votes
1answer
174 views
How to export attributes or annotations to an HDF5 file?
I'm trying to export attributes and annotations to an HDF5 file. But the documentation here is horrible and there are no examples of this.
I spent some time playing, but I can't get it to work. Here ...
0
votes
1answer
90 views
How to export a plot into a file?
I am trying to save some graphics into a file, and it seems impossible.
...
7
votes
1answer
92 views
Exporting German Umlauts to PDF and importing them doesn't work - character encoding problem
I am using Mathematica 9.0.0.0 under German Windows 32bit. I am on trying to export and import German text to PDF and re-import it. It seems that there is a confusion about the character encoding. It ...
2
votes
1answer
73 views
Combining two notebooks
I have a notebook which contain all the variables and defined functions. I want to do two tasks. As an example, I want to find the density and energy which have equations in terms of above mentioned ...
1
vote
0answers
107 views
Exporting images leaves syntax artifacts [closed]
I'm exporting Images (using .Net MathLink) and finding syntax artifacts in:
Images:
RTF:
PDF:
I've tried a couple of things such as ...
2
votes
0answers
75 views
Exporting large numbers to a text file [duplicate]
I need to export large numbers to an ASCII text file, but as simple digits without powers of ten, e.g. I need to write 123456.789 to the file and not 1.23456789E10^5. It seems like such a simple ...
1
vote
2answers
65 views
Exporting arrays for storage [duplicate]
I have a set of arrays I would like to output to some file ArrayStorage.txt s.t. these arrays could be read-in to a separate notebook on a separate kernel. Is ...