摘要: 1 %颜色设置对话框 2 uisetcolor 3 4 %c 1 0 0 红色 5 c=uisetcolor 6 7 %默认规定颜色 8 c=uisetcolor([1 0 0 ]); 9 10 %设置曲线颜色 11 h = plot([0:10]); 12 c = uisetcolor(h); 13 14 %生成一个按钮 点击弹出改变颜色的对话框 选定颜色改变按钮的颜... 阅读全文
posted @ 2018-01-06 20:16 wydxry 阅读(1266) 评论(0) 推荐(0) 编辑
摘要: 1 %uigetfile 2 uigetfile 3 4 doc uigetfile 5 6 %规定打开文件类型 7 uigetfile('*.m'); 8 9 %输出参数意义 10 [a,b,c] = uigetfile('*.m');%a 文件名 b 位置 c 保存键or取消键 11 12 [a,b,c] = uigetfile('*.txt'); 13 load(... 阅读全文
posted @ 2018-01-06 19:53 wydxry 阅读(211) 评论(0) 推荐(0) 编辑
摘要: 1 %text 2 hf = axes; 3 ht = text(1,1,'示例'); 4 5 get(ht); 6 7 %公式 并且设置位置坐标 (积分符号) 8 text('String','\int_0^x dF(x)','Position',[0.5 0.5]); 9 10 text('interpreter','latex','String', '$$ \int... 阅读全文
posted @ 2018-01-06 19:36 wydxry 阅读(321) 评论(0) 推荐(0) 编辑
摘要: 1 %示意line对象的用法 2 hf=figure; 3 hl=plot([0:10]); 4 5 %示意line对象的属性 6 get(hl) 7 8 %设置line的颜色 9 set(hl,'Color','r'); 10 11 %设置每个点形状 12 set(hl,'Marker','p'); 13 14 %设置颜色 15 set(hl,'MarkerEdgeC... 阅读全文
posted @ 2018-01-06 19:17 wydxry 阅读(290) 评论(0) 推荐(0) 编辑
摘要: 1 %常用对象的属性 2 3 %1.figure 4 %hf=figure; 5 %get(hf); 6 7 %改变颜色 set Color 8 %set(hf,'Color','w'); 9 10 %去掉默认的菜单 Menubar 11 %set(hf,'Menubar','none'); 12 13 %设置名字 14 %set(hf,'NumberTitle',... 阅读全文
posted @ 2018-01-06 18:58 wydxry 阅读(514) 评论(0) 推荐(0) 编辑
Live2D