Skip to content

Instantly share code, notes, and snippets.

@bemosior
Last active August 29, 2015 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bemosior/575a42de1a44cffb250d to your computer and use it in GitHub Desktop.
Save bemosior/575a42de1a44cffb250d to your computer and use it in GitHub Desktop.
Mathematic Parallel Graph Export
ParallelDo[
Export[
StringJoin["/path/destination/exported_", i, ".png"],
ListLinePlot[Import[StringJoin["/path/source/imported_", i, ".csv"], "CSV"]]
],
{i, {"256", "512", "1024", "2048", "4096"} }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment