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

📄 regbndpointsro.m

📁 本代码为基于matlab的求解偏微分方程的利用径向基函数的无网格方法的源码
💻 M
字号:
function bndpoints=regbndpointsRO(h) % defines "regular" boundary values 
                           % with approx. stepsize h on [0,2*pi]
global RBFdomain
 n=ceil(pi/h);  % the stepsize must be readjusted 
 h=2*pi/n;        % to make the angles lie at equidistant values
 phi=0:h:(2*pi) ;
 phi(length(phi))=[];% careful: no duplication of last=first point
 [nx,nphi]=size(phi);
 z=zeros(nphi,2);
 r=bndfct(phi);
 [x,y]=pol2cart(phi,r);
 bndpoints=[x' y'];

⌨️ 快捷键说明

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