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

📄 ex12_8.m

📁 Advanced Engineering Mathematics using MATLAB by Harman, Dabney, Richert,书中全部源码
💻 M
字号:
% EX12_8.M Perform 2D symbolic integration of the function%   x*sin(y)+y*cos(x) over fixed limits%     pi < y < 2pi, 0 < x < piinty=int('x*sin(y)+y*cos(x)','y',pi,2*pi) % Inner integralintx=int(inty,'x',0,pi)                   % Outer integraltwodint=numeric(intx)                % Convert to a number%% Modify the script to allow input of arbitrary functions%  and arbitrary integration limits%

⌨️ 快捷键说明

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