📄 ex14_8.m
字号:
% EX14_8.M Perform 2D symbolic integration of the function
% x*sin(y)+y*cos(x) over fixed limits
% pi < y < 2pi, 0 < x < pi
inty=int('x*sin(y)+y*cos(x)','y',pi,2*pi) % Inner integral
intx=int(inty,'x',0,pi) % Outer integral
twodint=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 + -