What is the true syntax for export_fig in order to save in a specific folder?

21 visualizzazioni (ultimi 30 giorni)
I read almost everywhere of 3rd party Matlab function namely export_fig (downloaded from FEX) documentation But, I don't know how I can save the exported figure in a specific folder like this address: 'F:\university\matlab\'. The documentation says: "filename - string containing the name (optionally including full or relative path) of the file the figure is to be saved as. If a path is not specified, the figure is saved in the current directory" So I did some tries but failed.
Here is my code:
export_fig('filename',num2str(k), '-dpng', '-transparent', '-r300')
I tried all of this:
export_fig('F:\university\matlab\project\filename',num2str(k), '-dpng', '-transparent', '-r300');
% and
export_fig('F:\university\matlab\project\',num2str(k), '-dpng', '-transparent', '-r300');
% and
export_fig('F:\university\matlab\project\','filename',num2str(k), '-dpng', '-transparent', '-r300');
Although I got no error and code runs successfully but it saves in the current folder not in F:\university\matlab\
Does anyone know what is the problem?
Thank you

Risposta accettata

Ameer Hamza
Ameer Hamza il 12 Apr 2020
Modificato: Ameer Hamza il 12 Apr 2020
The complete path and filename should be one input.
export_fig(['F:\university\matlab\project\filename',num2str(k)], '-dpng', '-transparent', '-r300');
%^ bracket ^

Più risposte (0)

Categorie

Scopri di più su Get Started with MATLAB in Help Center e File Exchange

Tag

Prodotti


Release

R2020a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by