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

📄 a124.m

📁 matlab算法集 matlab算法集
💻 M
字号:
       %----------------------------------------------------------------
       % Example a1.2.4: Utility Functions       
       %----------------------------------------------------------------
       clc                      % clear command window
       clear                    % clear variables
       randinit (100)           % select random sequence
       fprintf ('Example a1.2.4: Utility Functions\n'); 
       A = randu (3,4,-1,1);
       x = randg (6,1,10,2);
       show ('machine epsilon',eps)
       show ('A',A);
       show ('row sum norm of A',norm(A,inf))
       show ('x',x);
       show ('infinity norm of x',norm(x,inf))
       %----------------------------------------------------------------

⌨️ 快捷键说明

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