vector of n figures, where n is given by user

++

1 Comment

(Answers dev) Unable to restore question that OP edited away.

Answers (1)

Something like this?
n = input('How many figures?');
h = gobjects(1, n);
for iFigure=1:n
h(iFigure) = figure;
end
Titus

This question is closed.

Tags

No tags entered yet.

Asked:

on 14 Apr 2015

Closed:

on 20 Aug 2021

Community Treasure Hunt

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

Start Hunting!