How can i save figures all at once when using the spotting assay quantification?

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
hf =
Figure (1) with properties: Number: 1 Name: '' Color: [1 1 1] Position: [1628 1512 560 419.7599] Units: 'pixels' Use GET to show all properties
plot(randn(10,1))
hf(2) = figure
hf =
1×2 Figure array: Figure Figure
plot(randn(12,1))
whos
Name Size Bytes Class Attributes hf 1x2 16 matlab.ui.Figure
savefig(hf,"spot_assay_figures")
dir('*.fig')
spot_assay_figures.fig
See if that works in your application.
.

Categories

Find more on Printing and Saving in Help Center and File Exchange

Products

Release

R2025b

Asked:

on 17 Feb 2026

Answered:

on 17 Feb 2026

Community Treasure Hunt

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

Start Hunting!