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

📄 fct2d.m

📁 本代码为基于matlab的求解偏微分方程的利用径向基函数的无网格方法的源码
💻 M
字号:
function z=fct2D(x,y)  % the standard given function,                        % also used for solving the Poisson equation
global func3d
switch func3d
case 1
 z=abs(6-x.^2-y.^2) ;%1
case 2
z=peaks(x,y);
case 3%2
 z=x.^2+y.^2; 
case 4%3    z=exp(-x.^2-y.^2);case 5
 z=exp(-x.^2-5*y.^2);
end

⌨️ 快捷键说明

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