资源简介
泊松方程MATLAB程序
代码片段和文件信息
function U = Poisson(fgntolmax_it)
%
% function U = Poisson(fgntolmax_it)
%
% The five point scheme for solving the Dirichlet BVP of the
% Poisson equation on the unit square.
% Input
% f: the right hand side function
% g: the Dirichlet boundary value function
% n: the number of sub-intervals of [01]
% tol: relative error tolerance of the iterative solution;
% default value: 10^(-5)
% max_it: maximal number of iterations allowed;
% default value: 10000
% Output
% U: the solution u_{ij} ij=1...n+1
%
% To use the program the user must supply two m-files say
% ‘f.m‘ and ‘g.m‘ to define the right hand side function f of
% the differential equation and the boundary value function g.
% The user should also choose a positive integer n for the
% number of subintervals of [01].
% A sample call would be
% U = Poisson(‘f‘‘g‘n1e-81000)
% with 10^(-8) as the tolerance for the relative errors of the
% iterative solution and a maximal number of 1000 iterations
% is allowed for solving the finite difference system.
% It is also possible to use
% U = Poisson(‘f‘‘g‘n1e-8)
% then the maximal number of iterations is the default
% value 10^4. If the default values 10^(-5) and 10^4 are
% to be used for the iteration relative error tolerance and
% maximal
相关资源
- 心电信号处理
- MPSK信号调制识别程序
- 神经网络实现调制识别
- 异步电机vf控制matlab仿真模型
- 异步电机带电阻压降补偿的vf控制ma
- 永磁同步电机矢量控制matlab仿真模型
- 永磁同步电机无位置控制matlab仿真模
- 霍夫变换圆检测标准MATLAB
- 指纹预处理图matlab实现
- 在matlab中连续区间 交集 和 并集
- 基于matlab实现gold码
- 作业车间调度matlab源码及解析
- 邮政编码识别
- 基于Matlab的导线网坐标计算
- 基于MATLAB工具的遗传算法求解有约束
- 电力系统牛拉法潮流计算MATLAB程序
- 基于块匹配的视频序列的运动补偿
- 曲波变换重构
- 免疫算法matlab-物流中心选址的应用
- 烟花算法进行函数优化通用matlab代码
- 基于MATLAB的鸢尾花数据集分类
- MATLAB串口通信软件
- 非对称限幅正交频分复用matlab实现
- 智能车matlab仿真代码更新版
- 光伏阵列matlab仿真
- 超效率dea,BCCCCR三个模型matlab代码
- 磁链观测器模型
- FastICA2.5
- 图像傅里叶变换和幅度、相位谱重组
- 基于MATLAB 的三项桥式全控整流电路仿
评论
共有 条评论