How can i save figures all at once when using the spotting assay quantification?
Show older comments
I am having a difficult time to save spot assay images because the "save as" button does not work. As of right now I am saving each spot quantification one by one and saving it to my laptop. How can i solve this issue? Is there any other way i can do this ?
Answers (1)
I can't find any specific references to 'spotting assay' or 'spot assay', so I don't know if they're specific to any toolbox.
Probably one way to automate this would be to do something like this --
hf(1) = figure
plot(randn(10,1))
hf(2) = figure
plot(randn(12,1))
whos
savefig(hf,"spot_assay_figures")
dir('*.fig')
See if that works in your application.
.
Categories
Find more on Printing and Saving in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
