Last active
August 29, 2015 14:10
-
-
Save bemosior/575a42de1a44cffb250d to your computer and use it in GitHub Desktop.
Mathematic Parallel Graph Export
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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