ffunc.m

来自「快速泊松方程求解--MATLAB Fast Poisson Solver in」· M 代码 · 共 12 行

M
12
字号
% function, f for poisson.m
%
% Assume x and y of same length.
% f is returned as a matrix, analyzed at all interior points of the grid
% if f = 0, make sure f is a matrix of zeros, the size of x, NOT JUST ONE VALUE = 0!
function f = ffunc(x,y)
f = exp(x.*y);
%
% Written by M. Harper Langston - 5/10/00
% harper@cims.nyu.edu
%

⌨️ 快捷键说明

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