Creating an empty figure
30 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti

I am having trouble creating a blank figure.
This is the code I currently have
tf = isempty(names);
if tf == 1
plot()
elseif opt <1 | opt > 3
plot()
disp("Invalid opt value, it must be either 1, 2, or 3")
0 Commenti
Risposte (1)
VBBV
il 18 Feb 2024
tf = isempty(names);
if tf == 1
figure % to generate empty plot
elseif opt <1 | opt > 3
figure
disp("Invalid opt value, it must be either 1, 2, or 3")
end
1 Commento
Vedere anche
Categorie
Scopri di più su Creating, Deleting, and Querying Graphics Objects 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!