Save a plot from a function in a structure and save the structure
9 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Tiago Dias
il 18 Ott 2018
Commentato: Fangjun Jiang
il 19 Ott 2018
Hi everyone.
I created a function to perform pca calculations and to plot some specific plots, like loadings and scores.
to run this in my scrip i type:
[PCA_Model] = functionPCA(X)
This creates me a structure, where I have variables saved there that I can access using PCA_Model.eigenvalues, PCA_Model.Scores, etc.
Question -> How can I save this structure to access later on, instead of running the script again? Also, the plots I made is there a way to save in the structure like the variables? My objective in a fold of my chosen, I open PCA_Model, and I can see the plots I created plus the variables I saved in the structure
0 Commenti
Risposta accettata
Fangjun Jiang
il 18 Ott 2018
You can save all your workspace data or selected data into an .mat file. Then you can load or simply double click the .mat file to load the data back to the workspace. You can access the data whatever you want. See
doc save
doc load
For plots, you can also save them in separated files. On your plot, click menu, File, Save or Save As. Then you can re-open the plots by double click or drag-and-drop.
If it does not take too much time to run functionPCA(), I would still recommend calling and running your function every time, instead of saving to various files. Keep your original (source) data. The derived data can always be re-produced.
4 Commenti
Fangjun Jiang
il 19 Ott 2018
You could provide extra input arguments to your function, e.g. functionPCA(X,'SavedDataFileName','SavedFigureName') to get what you want. Or utilize the function inputname() to recognize the name of X or XX as your input and name files diffrently. But anyway, it will not be a pretty architecture or programming flow if you go down that way. I would split your program into 3 parts.
- functinpPCA(),process the input and create the output
- save the data, could be just one command, no function needed.
- load the data, create the plot
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Specifying Target for Graphics Output in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!