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

📄 trigplt.m

📁 hi i have a huge collection are you interested
💻 M
字号:
function trigplt(action)if nargin==0  uicontrol('Callback','trigplt Sine','Position',[508 351 51 26], ...      'String','Sine');  uicontrol('Callback','trigplt Cosine','Position',[508 322 51 26], ...      'String','Cos');  uicontrol('Callback','trigplt Tangent','Position',[508 293 51 26], ...      'String','Tan');else  x = linspace(0,2*pi);  switch(action)    case 'Sine'      y = sin(x); titstr = 'y = sin(x)';    case 'Cosine'      y = cos(x); titstr = 'y = cos(x)';    case 'Tangent'      y = tan(x); titstr = 'y = tan(x)';  endplot(x,y)end

⌨️ 快捷键说明

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