What is the “pdentrp” function in the “pdepe” function?
2 ビュー (過去 30 日間)
古いコメントを表示
I want to know the specific function and code of the “pdentrp ” function. I searched for “help” and some network resources, but there was no gain. Can anyone help me?
0 件のコメント
回答 (1 件)
Josh Meyer
2020 年 1 月 30 日
This is an internal, private helper function, so it does not have documentation beyond help text. You can access the file with the command
edit /MATLAB/toolbox/matlab/funfun/private/pdentrp.m
The help text for this function is:
%PDENTRP Interpolation helper function for PDEPE.
% [U,UX] = PDENTRP(M,XL,UL,XR,UR,XOUT) uses solution values UL at XL and UR at XR
% for successive mesh points XL < XR to interpolate the solution values U and
% the partial derivative with respect to x, UX, at arguments XOUT(i) with
% XL <= XOUT(i) <= XR. UL and UR are column vectors. Column i of the output
% arrays U, UX correspond to XOUT(i).
%
% See also PDEPE, PDEVAL, PDEODES.
1 件のコメント
参考
カテゴリ
Help Center および File Exchange で Boundary Conditions についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!