vector of n figures, where n is given by user
情報
この質問は閉じられています。 編集または回答するには再度開いてください。
古いコメントを表示
++
1 件のコメント
Rena Berman
2017 年 1 月 24 日
編集済み: Rena Berman
2017 年 1 月 24 日
(Answers dev) Unable to restore question that OP edited away.
回答 (1 件)
Titus Edelhofer
2015 年 4 月 14 日
Something like this?
n = input('How many figures?');
h = gobjects(1, n);
for iFigure=1:n
h(iFigure) = figure;
end
Titus
0 件のコメント
この質問は閉じられています。
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!