⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 edit1.m

📁 求解量子力学的薛定谔方程
💻 M
字号:
function f=edit1(xy,string);%> The file <edit1> allows us to edit a string%> Call q = edit1(xy, string) where%> xy = 4-vector giving the position and size of window%> string = string to be edited. %> If you want a number, say q=eval(q) t0 = uicontrol('Style','edit','Units','normalized', ...	'BackgroundColor',[.9 .9 .9], ...	'Position',xy, 'String',string, ...	'Callback','uiresume');uiwait; f=get(t0,'String');delete(t0);%>%> 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -