This commit is contained in:
2025-11-03 11:24:09 +08:00
parent 7d58efea2f
commit 7c647fa9e0
16 changed files with 487 additions and 0 deletions

10
COMM.m Normal file
View File

@@ -0,0 +1,10 @@
function COMM(hedit,hpopup,hlist)
com=get(hedit,'String');
n1=get(hpopup,'Value');
n2=get(hlist,'Value');
if ~isempty(com)
chpop={'spring','summer','autumn','winter'};
chlist={'grid on','grid off','box on','box off'};
colormap(eval(chpop{n1}));
eval(chlist{n2});
end