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

📄 linsht.m

📁 国外计算机科学教材系列 numerial method using matlab (third edition)
💻 M
字号:
function L=linsht(F1,F2,a,b,alpha,beta,M)%Input   - F1 and F2 are the systems of first-order equations %          representing the I.V.P.'s (9) and (10), respectively;%          input as strings 'F1', 'F2'%        - a and b are the endpoints of the interval%        - alpha = x(a) and beta = x(b); the boundary conditions%        - M is the number of steps%Output  - L = [T' X]; where T' is the (M+1) x 1 vector of abscissas %          and X is the (M+1) x 1 vector of ordinates% NUMERICAL METHODS: MATLAB Programs%(c) 1999 by John H. Mathews and Kurtis D. Fink%To accompany the textbook:%NUMERICAL METHODS Using MATLAB,%by John H. Mathews and Kurtis D. Fink%ISBN 0-13-270042-5, (c) 1999%PRENTICE HALL, INC.%Upper Saddle River, NJ 07458%Solve the system F1Za=[alpha,0];[T,Z]=rks4(F1,a,b,Za,M);U=Z(:,1);%Solve the system F2Za=[0,1];[T,Z]=rks4(F2,a,b,Za,M);V=Z(:,1);%Calculate the solution to the boundary value problemX=U+(beta-U(M+1))*V/V(M+1);L=[T' X];

⌨️ 快捷键说明

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