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

📄 a122.m

📁 matlab算法集 matlab算法集
💻 M
字号:
       %----------------------------------------------------------------
       % Example a1.2.2: Family of Curves 
       %----------------------------------------------------------------
       clc        % clear command window  
       clear      % clear variables
       m = 50;    % number of points
       n = 6;     % number of curves
       fprintf ('Example a1.2.2: Family of Curves\n');
       a = 5;
       x = linspace(0,a,m)';
       for j = 1 : n
          for i = 1 : m  
             Y(i,j) = j*x(i)*exp(-n*x(i)/j);
          end
       end
       graphxy (x,Y,'A Family of Curves','x','y')
       %----------------------------------------------------------------

⌨️ 快捷键说明

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